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

Unified Diff: content/public/browser/web_contents.h

Issue 13150004: Support color chooser inside extesions, apps, chrome frame, dev tool (Closed) Base URL: http://git.chromium.org/chromium/src.git@ngcolor
Patch Set: Used static class member Created 7 years, 8 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/public/browser/web_contents.h
diff --git a/content/public/browser/web_contents.h b/content/public/browser/web_contents.h
index 13cec7f735392b29fe987919ce53afa2e2dac0d2..89d1e1a703a44d46de76534f009f5ce00c23247e 100644
--- a/content/public/browser/web_contents.h
+++ b/content/public/browser/web_contents.h
@@ -394,11 +394,10 @@ class WebContents : public PageNavigator,
virtual bool GotResponseToLockMouseRequest(bool allowed) = 0;
// Called when the user has selected a color in the color chooser.
- virtual void DidChooseColorInColorChooser(int color_chooser_id,
- SkColor color) = 0;
+ virtual void DidChooseColorInColorChooser(SkColor color) = 0;
// Called when the color chooser has ended.
- virtual void DidEndColorChooser(int color_chooser_id) = 0;
+ virtual void DidEndColorChooser() = 0;
// Returns true if the location bar should be focused by default rather than
// the page contents. The view calls this function when the tab is focused

Powered by Google App Engine
This is Rietveld 408576698