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

Unified Diff: apps/shell_window.cc

Issue 23691036: Add support for datalist to input type color Base URL: https://chromium.googlesource.com/chromium/src.git@color
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 | « apps/shell_window.h ('k') | chrome/browser/devtools/devtools_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/shell_window.cc
diff --git a/apps/shell_window.cc b/apps/shell_window.cc
index 96c6abd7ed63de73d0dbfbbf9d87699b44e5e976..c2b312cda73bf9284d7260bd9f5b84f3fb13dc35 100644
--- a/apps/shell_window.cc
+++ b/apps/shell_window.cc
@@ -463,8 +463,11 @@ bool ShellWindow::ShouldSuppressDialogs() {
return true;
}
-content::ColorChooser* ShellWindow::OpenColorChooser(WebContents* web_contents,
- SkColor initial_color) {
+content::ColorChooser* ShellWindow::OpenColorChooser(
+ WebContents* web_contents,
+ SkColor initial_color,
+ const std::vector<SkColor>& suggestions,
+ const std::vector<string16>& suggestion_labels) {
return delegate_->ShowColorChooser(web_contents, initial_color);
}
« no previous file with comments | « apps/shell_window.h ('k') | chrome/browser/devtools/devtools_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698