| 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 <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 | 1289 |
| 1290 // WebKit and JavaScript error messages to log to the console | 1290 // WebKit and JavaScript error messages to log to the console |
| 1291 // or debugger UI. | 1291 // or debugger UI. |
| 1292 IPC_MESSAGE_ROUTED3(ViewHostMsg_AddMessageToConsole, | 1292 IPC_MESSAGE_ROUTED3(ViewHostMsg_AddMessageToConsole, |
| 1293 std::wstring, /* msg */ | 1293 std::wstring, /* msg */ |
| 1294 int32, /* line number */ | 1294 int32, /* line number */ |
| 1295 std::wstring /* source id */) | 1295 std::wstring /* source id */) |
| 1296 | 1296 |
| 1297 // Stores new inspector settings in the profile. | 1297 // Stores new inspector settings in the profile. |
| 1298 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateInspectorSettings, | 1298 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateInspectorSettings, |
| 1299 std::wstring /* raw_settings */) | 1299 std::string /* raw_settings */) |
| 1300 | 1300 |
| 1301 // Wraps an IPC message that's destined to the DevToolsClient on | 1301 // Wraps an IPC message that's destined to the DevToolsClient on |
| 1302 // DevToolsAgent->browser hop. | 1302 // DevToolsAgent->browser hop. |
| 1303 IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsClient, | 1303 IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsClient, |
| 1304 IPC::Message /* one of DevToolsClientMsg_XXX types */) | 1304 IPC::Message /* one of DevToolsClientMsg_XXX types */) |
| 1305 | 1305 |
| 1306 // Wraps an IPC message that's destined to the DevToolsAgent on | 1306 // Wraps an IPC message that's destined to the DevToolsAgent on |
| 1307 // DevToolsClient->browser hop. | 1307 // DevToolsClient->browser hop. |
| 1308 IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsAgent, | 1308 IPC_MESSAGE_ROUTED1(ViewHostMsg_ForwardToDevToolsAgent, |
| 1309 IPC::Message /* one of DevToolsAgentMsg_XXX types */) | 1309 IPC::Message /* one of DevToolsAgentMsg_XXX types */) |
| (...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1784 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, | 1784 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileAttributes, |
| 1785 FilePath /* the name of the file */, | 1785 FilePath /* the name of the file */, |
| 1786 int32 /* a unique message ID */) | 1786 int32 /* a unique message ID */) |
| 1787 | 1787 |
| 1788 // Asks the browser process to return the size of a DB file | 1788 // Asks the browser process to return the size of a DB file |
| 1789 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, | 1789 IPC_MESSAGE_CONTROL2(ViewHostMsg_DatabaseGetFileSize, |
| 1790 FilePath /* the name of the file */, | 1790 FilePath /* the name of the file */, |
| 1791 int32 /* a unique message ID */) | 1791 int32 /* a unique message ID */) |
| 1792 | 1792 |
| 1793 IPC_END_MESSAGES(ViewHost) | 1793 IPC_END_MESSAGES(ViewHost) |
| OLD | NEW |