| 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 1229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1240 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, | 1240 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, |
| 1241 int /* route_id */, | 1241 int /* route_id */, |
| 1242 gfx::Rect /* initial_pos */) | 1242 gfx::Rect /* initial_pos */) |
| 1243 | 1243 |
| 1244 // Message to show a full screen widget. | 1244 // Message to show a full screen widget. |
| 1245 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, | 1245 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, |
| 1246 int /* route_id */) | 1246 int /* route_id */) |
| 1247 | 1247 |
| 1248 // This message is sent after ViewHostMsg_ShowView to cause the RenderView | 1248 // This message is sent after ViewHostMsg_ShowView to cause the RenderView |
| 1249 // to run in a modal fashion until it is closed. | 1249 // to run in a modal fashion until it is closed. |
| 1250 IPC_SYNC_MESSAGE_ROUTED0_0(ViewHostMsg_RunModal) | 1250 IPC_SYNC_MESSAGE_ROUTED1_0(ViewHostMsg_RunModal, |
| 1251 int /* opener_id */) |
| 1251 | 1252 |
| 1252 // Indicates the renderer is ready in response to a ViewMsg_New or | 1253 // Indicates the renderer is ready in response to a ViewMsg_New or |
| 1253 // a ViewMsg_CreatingNew_ACK. | 1254 // a ViewMsg_CreatingNew_ACK. |
| 1254 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) | 1255 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) |
| 1255 | 1256 |
| 1256 // Indicates the renderer process is gone. This actually is sent by the | 1257 // Indicates the renderer process is gone. This actually is sent by the |
| 1257 // browser process to itself, but keeps the interface cleaner. | 1258 // browser process to itself, but keeps the interface cleaner. |
| 1258 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, | 1259 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, |
| 1259 int, /* this really is base::TerminationStatus */ | 1260 int, /* this really is base::TerminationStatus */ |
| 1260 int /* exit_code */) | 1261 int /* exit_code */) |
| (...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1989 // have a javascript send a native value (string, number, boolean) to the | 1990 // have a javascript send a native value (string, number, boolean) to the |
| 1990 // listener in Cpp. (DomAutomationController) | 1991 // listener in Cpp. (DomAutomationController) |
| 1991 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, | 1992 IPC_MESSAGE_ROUTED2(ViewHostMsg_DomOperationResponse, |
| 1992 std::string /* json_string */, | 1993 std::string /* json_string */, |
| 1993 int /* automation_id */) | 1994 int /* automation_id */) |
| 1994 | 1995 |
| 1995 // Enable or disable inverting of web content pixels, for users who prefer | 1996 // Enable or disable inverting of web content pixels, for users who prefer |
| 1996 // white-on-black. | 1997 // white-on-black. |
| 1997 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, | 1998 IPC_MESSAGE_ROUTED1(ViewMsg_InvertWebContent, |
| 1998 bool /* invert */) | 1999 bool /* invert */) |
| OLD | NEW |