Index: content/browser/web_contents/web_contents_impl.h |
diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h |
index d0ac6b35c3970bcd323b5a7e7842ea7e3998dee6..8bfbbe7afb5dbc33f2ba36b341015958d615e929 100644 |
--- a/content/browser/web_contents/web_contents_impl.h |
+++ b/content/browser/web_contents/web_contents_impl.h |
@@ -63,6 +63,7 @@ class WebContentsImpl; |
class WebContentsObserver; |
class WebContentsViewPort; |
class WebContentsViewDelegate; |
+struct ColorSuggestion; |
struct FaviconURL; |
struct LoadNotificationDetails; |
@@ -641,7 +642,9 @@ class CONTENT_EXPORT WebContentsImpl |
void OnCrashedPlugin(const base::FilePath& plugin_path, |
base::ProcessId plugin_pid); |
void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); |
- void OnOpenColorChooser(int color_chooser_id, SkColor color); |
+ void OnOpenColorChooser(int color_chooser_id, |
+ SkColor color, |
+ const std::vector<ColorSuggestion>& suggestions); |
void OnEndColorChooser(int color_chooser_id); |
void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color); |
void OnPepperPluginHung(int plugin_child_id, |