mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
- cefclient: Add background-color
command-line argument (issue #1161).
- Rename cef_url.h to cef_parser.h. - Add new CefParseCSSColor function.
This commit is contained in:
@ -26,8 +26,10 @@ class MainContextImpl : public MainContext {
|
||||
std::string GetDownloadPath(const std::string& file_name) OVERRIDE;
|
||||
std::string GetAppWorkingDirectory() OVERRIDE;
|
||||
std::string GetMainURL() OVERRIDE;
|
||||
cef_color_t GetBackgroundColor() OVERRIDE;
|
||||
void PopulateSettings(CefSettings* settings) OVERRIDE;
|
||||
void PopulateBrowserSettings(CefBrowserSettings* settings) OVERRIDE;
|
||||
void PopulateOsrSettings(OsrRenderer::Settings* settings) OVERRIDE;
|
||||
RootWindowManager* GetRootWindowManager() OVERRIDE;
|
||||
|
||||
// Initialize CEF and associated main context state. This method must be
|
||||
@ -63,6 +65,7 @@ class MainContextImpl : public MainContext {
|
||||
bool shutdown_;
|
||||
|
||||
std::string main_url_;
|
||||
cef_color_t background_color_;
|
||||
|
||||
scoped_ptr<RootWindowManager> root_window_manager_;
|
||||
|
||||
|
Reference in New Issue
Block a user