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

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/removed color_select_helper/added color_chooser_id 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 d9391fd530586d05fa5ca1f3ef8e09d923c121bf..72a163701c49f69682c9f65c1d6c69d1a54bfd38 100644
--- a/content/browser/tab_contents/tab_contents.h
+++ b/content/browser/tab_contents/tab_contents.h
@@ -303,6 +303,12 @@ class CONTENT_EXPORT TabContents
virtual void HandleMouseDown() OVERRIDE;
virtual void HandleMouseUp() OVERRIDE;
virtual void HandleMouseActivate() OVERRIDE;
+ virtual void OnOpenColorChooser(unsigned color_chooser_id,
+ const SkColor& color);
+ virtual void OnEndColorChooser(unsigned color_chooser_id);
+ virtual void OnSetSelectedColorInColorChooser(unsigned color_chooser_id,
+ const SkColor& color);
+ virtual void DidEndColorChooser() OVERRIDE;
virtual void RunFileChooser(
RenderViewHost* render_view_host,
const content::FileChooserParams& params) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698