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

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 comment Created 8 years, 11 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 5dda23e323bd806975e4d91c205abc9649b3a1df..d9252bd10b413ef425b863138eff0f11b352d160 100644
--- a/content/browser/tab_contents/tab_contents.h
+++ b/content/browser/tab_contents/tab_contents.h
@@ -301,6 +301,12 @@ class CONTENT_EXPORT TabContents
virtual void HandleMouseDown() OVERRIDE;
virtual void HandleMouseUp() OVERRIDE;
virtual void HandleMouseActivate() OVERRIDE;
+ virtual void OpenColorChooser(RenderViewHost* render_view_host,
+ const WebKit::WebColor& color) OVERRIDE;
+ virtual void EndColorChooser(RenderViewHost* render_view_host) OVERRIDE;
+ virtual void SetSelectedColorInColorChooser(
+ RenderViewHost* render_view_host,
+ const WebKit::WebColor& color) OVERRIDE;
virtual void RunFileChooser(
RenderViewHost* render_view_host,
const content::FileChooserParams& params) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698