| 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 e6e8e680e3ad682dd898751c77fc2f991cb62f90..1e090966ced91a80c2cacb082c59f1dcdf0fa637 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -62,6 +62,7 @@ class WebContentsImpl;
|
| class WebContentsObserver;
|
| class WebContentsViewPort;
|
| class WebContentsViewDelegate;
|
| +struct ColorSuggestion;
|
| struct FaviconURL;
|
| struct LoadNotificationDetails;
|
|
|
| @@ -616,7 +617,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,
|
|
|