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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 2802010: Revert 49594 - Convert page contents grabbing from wide to UTF16. The current... (Closed) Base URL: svn://svn.chromium.org/chrome/branches/437/src/
Patch Set: Created 10 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/translate/translate_manager_unittest.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1289 std::wstring /* in - default prompt */, 1289 std::wstring /* in - default prompt */,
1290 GURL /* in - originating page URL */, 1290 GURL /* in - originating page URL */,
1291 int /* in - dialog flags */, 1291 int /* in - dialog flags */,
1292 bool /* out - success */, 1292 bool /* out - success */,
1293 std::wstring /* out - prompt field */) 1293 std::wstring /* out - prompt field */)
1294 1294
1295 // Provides the contents for the given page that was loaded recently. 1295 // Provides the contents for the given page that was loaded recently.
1296 IPC_MESSAGE_ROUTED4(ViewHostMsg_PageContents, 1296 IPC_MESSAGE_ROUTED4(ViewHostMsg_PageContents,
1297 GURL /* URL of the page */, 1297 GURL /* URL of the page */,
1298 int32 /* page id */, 1298 int32 /* page id */,
1299 string16 /* page contents */, 1299 std::wstring /* page contents */,
1300 std::string /* page ISO639_1 language code */) 1300 std::string /* page ISO639_1 language code */)
1301 1301
1302 // Used to get the extension message bundle. 1302 // Used to get the extension message bundle.
1303 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetExtensionMessageBundle, 1303 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_GetExtensionMessageBundle,
1304 std::string /* extension id */, 1304 std::string /* extension id */,
1305 SubstitutionMap /* message bundle */) 1305 SubstitutionMap /* message bundle */)
1306 1306
1307 // Specifies the URL as the first parameter (a wstring) and thumbnail as 1307 // Specifies the URL as the first parameter (a wstring) and thumbnail as
1308 // binary data as the second parameter. 1308 // binary data as the second parameter.
1309 IPC_MESSAGE_ROUTED3(ViewHostMsg_Thumbnail, 1309 IPC_MESSAGE_ROUTED3(ViewHostMsg_Thumbnail,
(...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after
2484 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume, 2484 IPC_MESSAGE_CONTROL2(ViewHostMsg_Geolocation_Resume,
2485 int /* render_view_id */, 2485 int /* render_view_id */,
2486 int /* bridge_id */) 2486 int /* bridge_id */)
2487 2487
2488 // Send the tree of accessibility data to the browser, where it's cached 2488 // Send the tree of accessibility data to the browser, where it's cached
2489 // in order to respond to OS accessibility queries immediately. 2489 // in order to respond to OS accessibility queries immediately.
2490 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree, 2490 IPC_MESSAGE_ROUTED1(ViewHostMsg_AccessibilityTree,
2491 webkit_glue::WebAccessibility) 2491 webkit_glue::WebAccessibility)
2492 2492
2493 IPC_END_MESSAGES(ViewHost) 2493 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/browser/translate/translate_manager_unittest.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698