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

Unified Diff: chrome/browser/extensions/extension_host.cc

Issue 23593006: Add support for datalist to input type color Base URL: https://chromium.googlesource.com/chromium/src.git@colorstretch
Patch Set: Created 7 years, 3 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
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/extension_host.cc
diff --git a/chrome/browser/extensions/extension_host.cc b/chrome/browser/extensions/extension_host.cc
index d7cd52829ab2171c9ea3e3db3d92d946e0fbc095..ba6c1db4079adc0a2d896b9997d19972cf3267ca 100644
--- a/chrome/browser/extensions/extension_host.cc
+++ b/chrome/browser/extensions/extension_host.cc
@@ -618,7 +618,10 @@ content::JavaScriptDialogManager* ExtensionHost::GetJavaScriptDialogManager() {
}
content::ColorChooser* ExtensionHost::OpenColorChooser(
- WebContents* web_contents, SkColor initial_color) {
+ WebContents* web_contents,
+ SkColor initial_color,
+ const std::vector<SkColor>& suggestions,
+ const std::vector<string16>& suggestion_labels) {
return chrome::ShowColorChooser(web_contents, initial_color);
}
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698