| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 // Used to notify the render-view that we have received a target URL. Used | 375 // Used to notify the render-view that we have received a target URL. Used |
| 376 // to prevent target URLs spamming the browser. | 376 // to prevent target URLs spamming the browser. |
| 377 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) | 377 IPC_MESSAGE_ROUTED0(ViewMsg_UpdateTargetURL_ACK) |
| 378 | 378 |
| 379 // Sets the alternate error page URL (link doctor) for the renderer process. | 379 // Sets the alternate error page URL (link doctor) for the renderer process. |
| 380 IPC_MESSAGE_ROUTED1(ViewMsg_SetAltErrorPageURL, GURL) | 380 IPC_MESSAGE_ROUTED1(ViewMsg_SetAltErrorPageURL, GURL) |
| 381 | 381 |
| 382 // Install the first missing pluign. | 382 // Install the first missing pluign. |
| 383 IPC_MESSAGE_ROUTED0(ViewMsg_InstallMissingPlugin) | 383 IPC_MESSAGE_ROUTED0(ViewMsg_InstallMissingPlugin) |
| 384 | 384 |
| 385 // Tells the renderer to empty its plugin list cache. |
| 386 IPC_MESSAGE_CONTROL0(ViewMsg_PurgePluginListCache) |
| 387 |
| 385 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, | 388 IPC_MESSAGE_ROUTED1(ViewMsg_RunFileChooserResponse, |
| 386 std::vector<FilePath> /* selected files */) | 389 std::vector<FilePath> /* selected files */) |
| 387 | 390 |
| 388 // Used to instruct the RenderView to go into "view source" mode. | 391 // Used to instruct the RenderView to go into "view source" mode. |
| 389 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | 392 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) |
| 390 | 393 |
| 391 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, | 394 IPC_MESSAGE_ROUTED2(ViewMsg_UpdateBackForwardListCount, |
| 392 int /* back_list_count */, | 395 int /* back_list_count */, |
| 393 int /* forward_list_count */) | 396 int /* forward_list_count */) |
| 394 | 397 |
| (...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1333 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, | 1336 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_OpenChannelToExtension, |
| 1334 std::string /* extension_id */, | 1337 std::string /* extension_id */, |
| 1335 int /* port_id */) | 1338 int /* port_id */) |
| 1336 | 1339 |
| 1337 // Send a message to an extension process. The handle is the value returned | 1340 // Send a message to an extension process. The handle is the value returned |
| 1338 // by ViewHostMsg_OpenChannelToExtension. | 1341 // by ViewHostMsg_OpenChannelToExtension. |
| 1339 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, | 1342 IPC_MESSAGE_CONTROL2(ViewHostMsg_ExtensionPostMessage, |
| 1340 int /* port_id */, | 1343 int /* port_id */, |
| 1341 std::string /* message */) | 1344 std::string /* message */) |
| 1342 IPC_END_MESSAGES(ViewHost) | 1345 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |