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

Unified Diff: chrome/common/render_messages_internal.h

Issue 2823042: Implement IsSearchProviderInstalled and a test for it. (Closed)
Patch Set: Addressed feedback. Created 10 years, 5 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: chrome/common/render_messages_internal.h
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h
index 7b664693b31ddad42d5c6e634abdd53961e27609..9abb8c2ecef13e863f1df3862b0342b310a8f487 100644
--- a/chrome/common/render_messages_internal.h
+++ b/chrome/common/render_messages_internal.h
@@ -1548,12 +1548,18 @@ IPC_BEGIN_MESSAGES(ViewHost)
GURL /* url of OS description document */,
bool /* autodetected */)
- // requires for updating text input state.
+ // Find out if the given url's security origin is installed as a search provider.
sky 2010/07/15 23:24:49 > 80
+ IPC_SYNC_MESSAGE_ROUTED1_1(
+ ViewHostMsg_GetSearchProviderInstallState,
+ GURL,
+ ViewHostMsg_GetSearchProviderInstallState_Params /* install */)
+
+ // Required for updating text input state.
IPC_MESSAGE_ROUTED2(ViewHostMsg_ImeUpdateTextInputState,
WebKit::WebTextInputType, /* text_input_type */
gfx::Rect /* caret_rect */)
- // requires for cancelling an ongoing input method composition.
+ // Required for cancelling an ongoing input method composition.
IPC_MESSAGE_ROUTED0(ViewHostMsg_ImeCancelComposition)
// Tells the browser that the renderer is done calculating the number of
@@ -1580,7 +1586,7 @@ IPC_BEGIN_MESSAGES(ViewHost)
IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_ScriptedPrint,
ViewHostMsg_ScriptedPrint_Params,
ViewMsg_PrintPages_Params
- /* settings choosen by the user*/)
+ /* settings chosen by the user*/)
#endif // defined(OS_WIN) || defined(OS_MACOSX)
// WebKit and JavaScript error messages to log to the console

Powered by Google App Engine
This is Rietveld 408576698