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

Unified Diff: chrome/common/render_messages_internal.h

Issue 523149: Revert 35735 - Relanding the language detection code.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 11 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/notification_type.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/render_messages_internal.h
===================================================================
--- chrome/common/render_messages_internal.h (revision 35751)
+++ chrome/common/render_messages_internal.h (working copy)
@@ -253,6 +253,14 @@
string16 /* search_text */,
WebKit::WebFindOptions)
+ // Send from the browser to the rendered to get the text content of the page.
+ IPC_MESSAGE_ROUTED0(ViewMsg_DeterminePageText)
+
+ // Send from the renderer to the browser to return the text content of the
+ // page.
+ IPC_MESSAGE_ROUTED1(ViewMsg_DeterminePageText_Reply,
+ std::wstring /* the language */)
+
// Send from the renderer to the browser to return the script running result.
IPC_MESSAGE_ROUTED2(ViewMsg_ExecuteCodeFinished,
int, /* request id */
@@ -1097,7 +1105,7 @@
IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateSpellingPanelWithMisspelledWord,
string16 /* the word to update the panel with */)
- // Initiates a download based on user actions like 'ALT+click'.
+ // Initiate a download based on user actions like 'ALT+click'.
IPC_MESSAGE_ROUTED2(ViewHostMsg_DownloadUrl,
GURL /* url */,
GURL /* referrer */)
@@ -1115,11 +1123,9 @@
bool /* out - success */,
std::wstring /* out - prompt field */)
- // Provides the contents for the given page that was loaded recently.
- IPC_MESSAGE_ROUTED3(ViewHostMsg_PageContents,
- GURL /* URL of the page */,
- int32 /* page id */,
- std::wstring /*page contents */)
+ // Sets the contents for the given page (URL and page ID are the first two
+ // arguments) given the contents that is the 3rd.
+ IPC_MESSAGE_CONTROL3(ViewHostMsg_PageContents, GURL, int32, std::wstring)
// Used to get the extension message bundle.
IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetExtensionMessageBundle,
@@ -1144,13 +1150,13 @@
// user right clicked.
IPC_MESSAGE_ROUTED1(ViewHostMsg_ContextMenu, ContextMenuParams)
- // Requests that the given URL be opened in the specified manner.
+ // Request that the given URL be opened in the specified manner.
IPC_MESSAGE_ROUTED3(ViewHostMsg_OpenURL,
GURL /* url */,
GURL /* referrer */,
WindowOpenDisposition /* disposition */)
- // Notifies that the preferred size of the content changed.
+ // Notify that the preferred size of the content changed.
IPC_MESSAGE_ROUTED1(ViewHostMsg_DidContentsPreferredSizeChange,
gfx::Size /* pref_size */)
« no previous file with comments | « chrome/common/notification_type.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698