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

Unified Diff: content/public/browser/web_contents_delegate.cc

Issue 9203001: Implement input type=color UI (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: fixed 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/public/browser/web_contents_delegate.cc
diff --git a/content/public/browser/web_contents_delegate.cc b/content/public/browser/web_contents_delegate.cc
index e344367a14fc7df7d59c3813ceb39f3450c9235a..63fabf3ab15b7d5fa31047d84d7b93d7a3592d7e 100644
--- a/content/public/browser/web_contents_delegate.cc
+++ b/content/public/browser/web_contents_delegate.cc
@@ -131,6 +131,12 @@ bool WebContentsDelegate::IsFullscreenForTab(const WebContents* tab) const {
return false;
}
+content::ColorChooser* WebContentsDelegate::OpenColorChooser(WebContents* tab,
+ int color_chooser_id,
+ const SkColor& color) {
+ return NULL;
+}
+
void WebContentsDelegate::WebIntentDispatch(
WebContents* tab,
WebIntentsDispatcher* intents_dispatcher) {

Powered by Google App Engine
This is Rietveld 408576698