Index: chrome/common/render_messages.h |
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h |
index 7825461a5bc20b59a0ae0114c2a73b6b7163c01d..d5bc2d9adeead45a024bbdcd21f1e21856eb11d5 100644 |
--- a/chrome/common/render_messages.h |
+++ b/chrome/common/render_messages.h |
@@ -269,19 +269,15 @@ IPC_MESSAGE_ROUTED3(ChromeViewMsg_HandleMessageFromExternalHost, |
IPC_MESSAGE_ROUTED4(ChromeViewMsg_SearchBoxChange, |
string16 /* value */, |
bool /* verbatim */, |
- int /* selection_start */, |
- int /* selection_end */) |
-IPC_MESSAGE_ROUTED2(ChromeViewMsg_SearchBoxSubmit, |
- string16 /* value */, |
- bool /* verbatim */) |
-IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxCancel) |
+ size_t /* selection_start */, |
+ size_t /* selection_end */) |
+IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, |
+ string16 /* value */) |
+IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxCancel, |
+ string16 /* value */) |
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxResize, |
gfx::Rect /* search_box_bounds */) |
-IPC_MESSAGE_ROUTED4(ChromeViewMsg_DetermineIfPageSupportsInstant, |
- string16 /* value*/, |
- bool /* verbatim */, |
- int /* selection_start */, |
- int /* selection_end */) |
+IPC_MESSAGE_ROUTED0(ChromeViewMsg_DetermineIfPageSupportsInstant) |
// Toggles visual muting of the render view area. This is on when a constrained |
// window is showing. |
@@ -601,7 +597,7 @@ IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FocusedEditableNodeTouched) |
IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetSuggestions, |
int32 /* page_id */, |
- std::vector<std::string> /* suggestions */, |
+ std::vector<string16> /* suggestions */, |
InstantCompleteBehavior) |
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined, |