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

Unified Diff: chrome/browser/ui/browser.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/ui/browser.h ('k') | chrome/browser/ui/views/external_tab_container_win.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index cbf706b85cfb89ac4d45ea7ba2441415f79212d8..333a18e138519e01fe66e8fa6a916405870e3eac 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -1587,8 +1587,11 @@ content::JavaScriptDialogManager* Browser::GetJavaScriptDialogManager() {
return GetJavaScriptDialogManagerInstance();
}
-content::ColorChooser* Browser::OpenColorChooser(WebContents* web_contents,
- SkColor initial_color) {
+content::ColorChooser* Browser::OpenColorChooser(
+ 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/ui/browser.h ('k') | chrome/browser/ui/views/external_tab_container_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698