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

Unified Diff: content/common/view_messages.h

Issue 23026006: Add support for color input datalist on Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/common/view_messages.h
diff --git a/content/common/view_messages.h b/content/common/view_messages.h
index 7bd409f694a5ec278efd586284504872867e6433..561b421a53a874cd56fa52fdf9035a41254515a3 100644
--- a/content/common/view_messages.h
+++ b/content/common/view_messages.h
@@ -1962,9 +1962,11 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_SelectionBoundsChanged,
ViewHostMsg_SelectionBounds_Params)
// Asks the browser to open the color chooser.
-IPC_MESSAGE_ROUTED2(ViewHostMsg_OpenColorChooser,
+IPC_MESSAGE_ROUTED4(ViewHostMsg_OpenColorChooser,
int /* id */,
- SkColor /* color */)
+ SkColor /* color */,
+ std::vector<SkColor> /* suggestions */,
+ std::vector<string16> /* suggestion_labels */)
Miguel Garcia 2013/08/19 14:43:27 there might have some security issues with sending
keishi 2013/08/26 05:28:54 Done.
// Asks the browser to end the color chooser.
IPC_MESSAGE_ROUTED1(ViewHostMsg_EndColorChooser, int /* id */)

Powered by Google App Engine
This is Rietveld 408576698