Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1133)

Unified Diff: content/browser/tab_contents/tab_contents.h

Issue 9203001: Implement input type=color UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed issues Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/tab_contents/tab_contents.h
diff --git a/content/browser/tab_contents/tab_contents.h b/content/browser/tab_contents/tab_contents.h
index 83fa9d8cdb654bb2559f47ecddd3ba110acf506e..833cf96d1a3823c1c15227fa3b191beafeeeb7b2 100644
--- a/content/browser/tab_contents/tab_contents.h
+++ b/content/browser/tab_contents/tab_contents.h
@@ -301,6 +301,11 @@ class CONTENT_EXPORT TabContents
virtual void HandleMouseDown() OVERRIDE;
virtual void HandleMouseUp() OVERRIDE;
virtual void HandleMouseActivate() OVERRIDE;
+ virtual void OnOpenColorChooser(int color_chooser_id,
+ const SkColor& color);
+ virtual void OnEndColorChooser(int color_chooser_id);
+ virtual void OnSetSelectedColorInColorChooser(int color_chooser_id,
+ const SkColor& color);
virtual void RunFileChooser(
RenderViewHost* render_view_host,
const content::FileChooserParams& params) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698