| 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 1144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 IPC_MESSAGE_ROUTED0(ViewMsg_DisassociateFromPopupCount) | 1155 IPC_MESSAGE_ROUTED0(ViewMsg_DisassociateFromPopupCount) |
| 1156 | 1156 |
| 1157 // Used to instruct the RenderView to go into "view source" mode. | 1157 // Used to instruct the RenderView to go into "view source" mode. |
| 1158 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) | 1158 IPC_MESSAGE_ROUTED0(ViewMsg_EnableViewSourceMode) |
| 1159 | 1159 |
| 1160 // Instructs the renderer to save the current page to MHTML. | 1160 // Instructs the renderer to save the current page to MHTML. |
| 1161 IPC_MESSAGE_ROUTED2(ViewMsg_SavePageAsMHTML, | 1161 IPC_MESSAGE_ROUTED2(ViewMsg_SavePageAsMHTML, |
| 1162 int /* job_id */, | 1162 int /* job_id */, |
| 1163 IPC::PlatformFileForTransit /* file handle */) | 1163 IPC::PlatformFileForTransit /* file handle */) |
| 1164 | 1164 |
| 1165 // Exit fullscreen. | |
| 1166 IPC_MESSAGE_ROUTED0(ViewMsg_ExitFullscreen) | |
| 1167 | |
| 1168 // Temporary message to diagnose an unexpected condition in TabContents. | 1165 // Temporary message to diagnose an unexpected condition in TabContents. |
| 1169 IPC_MESSAGE_CONTROL1(ViewMsg_TempCrashWithData, | 1166 IPC_MESSAGE_CONTROL1(ViewMsg_TempCrashWithData, |
| 1170 GURL /* data */) | 1167 GURL /* data */) |
| 1171 | 1168 |
| 1172 | 1169 |
| 1173 // Messages sent from the renderer to the browser. | 1170 // Messages sent from the renderer to the browser. |
| 1174 | 1171 |
| 1175 // Sent by the renderer when it is creating a new window. The browser creates | 1172 // Sent by the renderer when it is creating a new window. The browser creates |
| 1176 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is | 1173 // a tab for it and responds with a ViewMsg_CreatingNew_ACK. If route_id is |
| 1177 // MSG_ROUTING_NONE, the view couldn't be created. | 1174 // MSG_ROUTING_NONE, the view couldn't be created. |
| (...skipping 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1955 media::MediaLogEvent /* event */) | 1952 media::MediaLogEvent /* event */) |
| 1956 | 1953 |
| 1957 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1954 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
| 1958 // being sent back. | 1955 // being sent back. |
| 1959 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1956 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
| 1960 | 1957 |
| 1961 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1958 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
| 1962 // whenever the mouse is unlocked (which may or may not be caused by | 1959 // whenever the mouse is unlocked (which may or may not be caused by |
| 1963 // ViewHostMsg_UnlockMouse). | 1960 // ViewHostMsg_UnlockMouse). |
| 1964 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1961 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
| OLD | NEW |