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