OLD | NEW |
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 Loading... |
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 Loading... |
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) |
OLD | NEW |