| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC messages for page rendering. | 5 // IPC messages for page rendering. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "base/process.h" | 8 #include "base/process.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| (...skipping 1270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 // object contains information about the node(s) that were selected when the | 1281 // object contains information about the node(s) that were selected when the |
| 1282 // user right clicked. | 1282 // user right clicked. |
| 1283 IPC_MESSAGE_ROUTED1(ViewHostMsg_ContextMenu, content::ContextMenuParams) | 1283 IPC_MESSAGE_ROUTED1(ViewHostMsg_ContextMenu, content::ContextMenuParams) |
| 1284 | 1284 |
| 1285 // Message to show a popup menu using native cocoa controls (Mac only). | 1285 // Message to show a popup menu using native cocoa controls (Mac only). |
| 1286 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, | 1286 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowPopup, |
| 1287 ViewHostMsg_ShowPopup_Params) | 1287 ViewHostMsg_ShowPopup_Params) |
| 1288 | 1288 |
| 1289 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied | 1289 // Response from ViewMsg_ScriptEvalRequest. The ID is the parameter supplied |
| 1290 // to ViewMsg_ScriptEvalRequest. The result has the value returned by the | 1290 // to ViewMsg_ScriptEvalRequest. The result has the value returned by the |
| 1291 // script as it's only element, one of Null, Boolean, Integer, Real, Date, or | 1291 // script as its only element, one of Null, Boolean, Integer, Real, Date, or |
| 1292 // String. | 1292 // String. |
| 1293 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, | 1293 IPC_MESSAGE_ROUTED2(ViewHostMsg_ScriptEvalResponse, |
| 1294 int /* id */, | 1294 int /* id */, |
| 1295 base::ListValue /* result */) | 1295 base::ListValue /* result */) |
| 1296 | 1296 |
| 1297 // Result of string search in the page. | 1297 // Result of string search in the page. |
| 1298 // Response to ViewMsg_Find with the results of the requested find-in-page | 1298 // Response to ViewMsg_Find with the results of the requested find-in-page |
| 1299 // search, the number of matches found and the selection rect (in screen | 1299 // search, the number of matches found and the selection rect (in screen |
| 1300 // coordinates) for the string found. If |final_update| is false, it signals | 1300 // coordinates) for the string found. If |final_update| is false, it signals |
| 1301 // that this is not the last Find_Reply message - more will be sent as the | 1301 // that this is not the last Find_Reply message - more will be sent as the |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1988 // have a javascript send a native value (string, number, boolean) to the | 1988 // have a javascript send a native value (string, number, boolean) to the |
| 1989 // listener in Cpp. (DomAutomationController) | 1989 // listener in Cpp. (DomAutomationController) |
| 1990 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1990 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
| 1991 std::string /* json_string */, | 1991 std::string /* json_string */, |
| 1992 int /* automation_id */) | 1992 int /* automation_id */) |
| 1993 | 1993 |
| 1994 // Enable or disable inverting of web content pixels, for users who prefer | 1994 // Enable or disable inverting of web content pixels, for users who prefer |
| 1995 // white-on-black. | 1995 // white-on-black. |
| 1996 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1996 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
| 1997 bool /* invert */) | 1997 bool /* invert */) |
| OLD | NEW |