OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1119 int /* job_id */, | 1119 int /* job_id */, |
1120 IPC::PlatformFileForTransit /* file handle */) | 1120 IPC::PlatformFileForTransit /* file handle */) |
1121 | 1121 |
1122 // Exit fullscreen. | 1122 // Exit fullscreen. |
1123 IPC_MESSAGE_ROUTED0(ViewMsg_ExitFullscreen) | 1123 IPC_MESSAGE_ROUTED0(ViewMsg_ExitFullscreen) |
1124 | 1124 |
1125 // Temporary message to diagnose an unexpected condition in TabContents. | 1125 // Temporary message to diagnose an unexpected condition in TabContents. |
1126 IPC_MESSAGE_CONTROL1(ViewMsg_TempCrashWithData, | 1126 IPC_MESSAGE_CONTROL1(ViewMsg_TempCrashWithData, |
1127 GURL /* data */) | 1127 GURL /* data */) |
1128 | 1128 |
| 1129 // Tells the view it is displaying an interstitial page. |
| 1130 IPC_MESSAGE_ROUTED0(ViewMsg_SetAsInterstitial) |
1129 | 1131 |
1130 // Messages sent from the renderer to the browser. | 1132 // Messages sent from the renderer to the browser. |
1131 | 1133 |
1132 // Sent by the renderer when it is creating a new window. The browser creates | 1134 // Sent by the renderer when it is creating a new window. The browser creates |
1133 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 1135 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
1134 // MSG_ROUTING_NONE, the view couldn't be created. | 1136 // MSG_ROUTING_NONE, the view couldn't be created. |
1135 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_CreateWindow, | 1137 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_CreateWindow, |
1136 ViewHostMsg_CreateWindow_Params, | 1138 ViewHostMsg_CreateWindow_Params, |
1137 int /* route_id */, | 1139 int /* route_id */, |
1138 int64 /* cloned_session_storage_namespace_id */) | 1140 int64 /* cloned_session_storage_namespace_id */) |
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1912 media::MediaLogEvent /* event */) | 1914 media::MediaLogEvent /* event */) |
1913 | 1915 |
1914 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1916 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1915 // being sent back. | 1917 // being sent back. |
1916 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1918 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1917 | 1919 |
1918 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1920 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1919 // whenever the mouse is unlocked (which may or may not be caused by | 1921 // whenever the mouse is unlocked (which may or may not be caused by |
1920 // ViewHostMsg_UnlockMouse). | 1922 // ViewHostMsg_UnlockMouse). |
1921 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1923 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |