| 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 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1254 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, | 1254 IPC_MESSAGE_ROUTED2(ViewHostMsg_ShowWidget, |
| 1255 int /* route_id */, | 1255 int /* route_id */, |
| 1256 gfx::Rect /* initial_pos */) | 1256 gfx::Rect /* initial_pos */) |
| 1257 | 1257 |
| 1258 // Message to show a full screen widget. | 1258 // Message to show a full screen widget. |
| 1259 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, | 1259 IPC_MESSAGE_ROUTED1(ViewHostMsg_ShowFullscreenWidget, |
| 1260 int /* route_id */) | 1260 int /* route_id */) |
| 1261 | 1261 |
| 1262 // This message is sent after ViewHostMsg_ShowView to cause the RenderView | 1262 // This message is sent after ViewHostMsg_ShowView to cause the RenderView |
| 1263 // to run in a modal fashion until it is closed. | 1263 // to run in a modal fashion until it is closed. |
| 1264 IPC_SYNC_MESSAGE_ROUTED0_0(ViewHostMsg_RunModal) | 1264 IPC_SYNC_MESSAGE_ROUTED1_0(ViewHostMsg_RunModal, |
| 1265 int /* opener_id */) |
| 1265 | 1266 |
| 1266 // Indicates the renderer is ready in response to a ViewMsg_New or | 1267 // Indicates the renderer is ready in response to a ViewMsg_New or |
| 1267 // a ViewMsg_CreatingNew_ACK. | 1268 // a ViewMsg_CreatingNew_ACK. |
| 1268 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) | 1269 IPC_MESSAGE_ROUTED0(ViewHostMsg_RenderViewReady) |
| 1269 | 1270 |
| 1270 // Indicates the renderer process is gone. This actually is sent by the | 1271 // Indicates the renderer process is gone. This actually is sent by the |
| 1271 // browser process to itself, but keeps the interface cleaner. | 1272 // browser process to itself, but keeps the interface cleaner. |
| 1272 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, | 1273 IPC_MESSAGE_ROUTED2(ViewHostMsg_RenderViewGone, |
| 1273 int, /* this really is base::TerminationStatus */ | 1274 int, /* this really is base::TerminationStatus */ |
| 1274 int /* exit_code */) | 1275 int /* exit_code */) |
| (...skipping 753 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2028 int /* automation_id */) | 2029 int /* automation_id */) |
| 2029 | 2030 |
| 2030 // Sent to the browser when the renderer detects it is blocked on a pepper | 2031 // Sent to the browser when the renderer detects it is blocked on a pepper |
| 2031 // plugin message for too long. This is also sent when it becomes unhung | 2032 // plugin message for too long. This is also sent when it becomes unhung |
| 2032 // (according to the value of is_hung). The browser can give the user the | 2033 // (according to the value of is_hung). The browser can give the user the |
| 2033 // option of killing the plugin. | 2034 // option of killing the plugin. |
| 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2035 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
| 2035 int /* plugin_child_id */, | 2036 int /* plugin_child_id */, |
| 2036 FilePath /* path */, | 2037 FilePath /* path */, |
| 2037 bool /* is_hung */) | 2038 bool /* is_hung */) |
| OLD | NEW |