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

Unified Diff: chrome/common/render_messages.h

Issue 10836031: Remove Instant v1 API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update history, title, favicon Created 8 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
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages.h
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 41f6110ad24220d8f6de74bee92012a998f64807..51094f663541478a86bdd1a49e4f17e00aba75a7 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.
@@ -604,14 +600,17 @@ IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_FocusedEditableNodeTouched)
// Suggest results -----------------------------------------------------------
+// Sent by the Instant preview to populate the omnibox with query suggestions.
IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_SetSuggestions,
- int32 /* page_id */,
- std::vector<std::string> /* suggestions */,
- InstantCompleteBehavior)
+ int /* page_id */,
+ std::vector<string16> /* suggestions */,
+ InstantCompleteBehavior /* behavior */)
+// Sent by the Instant preview indicating whether the page supports the Instant
+// API or not (http://dev.chromium.org/searchbox).
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_InstantSupportDetermined,
- int32 /* page_id */,
- bool /* result */)
+ int /* page_id */,
+ bool /* result */)
// The currently displayed PDF has an unsupported feature.
IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_PDFHasUnsupportedFeature)
« no previous file with comments | « chrome/common/instant_types.h ('k') | chrome/renderer/chrome_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698