OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 // This header is meant to be included in multiple passes, hence no traditional | 5 // This header is meant to be included in multiple passes, hence no traditional |
6 // header guard. | 6 // header guard. |
7 // See ipc_message_macros.h for explanation of the macros and passes. | 7 // See ipc_message_macros.h for explanation of the macros and passes. |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 IPC_MESSAGE_ROUTED0(ViewMsg_DebugDetach) | 222 IPC_MESSAGE_ROUTED0(ViewMsg_DebugDetach) |
223 | 223 |
224 // Break V8 execution. | 224 // Break V8 execution. |
225 IPC_MESSAGE_ROUTED1(ViewMsg_DebugBreak, | 225 IPC_MESSAGE_ROUTED1(ViewMsg_DebugBreak, |
226 bool /* force */) | 226 bool /* force */) |
227 | 227 |
228 // Send a command to the V8 debugger. | 228 // Send a command to the V8 debugger. |
229 IPC_MESSAGE_ROUTED1(ViewMsg_DebugCommand, | 229 IPC_MESSAGE_ROUTED1(ViewMsg_DebugCommand, |
230 std::wstring /* cmd */) | 230 std::wstring /* cmd */) |
231 | 231 |
232 // Change the text size in the renderer. | 232 // Change the zoom level in the renderer. |
233 IPC_MESSAGE_ROUTED1(ViewMsg_AlterTextSize, | 233 IPC_MESSAGE_ROUTED1(ViewMsg_Zoom, |
234 int /* enum text_zoom::TextSize from text_zoom.h */) | 234 int /* One of PageZoom::Function */) |
235 | 235 |
236 // Change encoding of page in the renderer. | 236 // Change encoding of page in the renderer. |
237 IPC_MESSAGE_ROUTED1(ViewMsg_SetPageEncoding, | 237 IPC_MESSAGE_ROUTED1(ViewMsg_SetPageEncoding, |
238 std::wstring /*new encoding name*/) | 238 std::wstring /*new encoding name*/) |
239 | 239 |
240 // Inspect the element at the specified coordinates | 240 // Inspect the element at the specified coordinates |
241 IPC_MESSAGE_ROUTED2(ViewMsg_InspectElement, | 241 IPC_MESSAGE_ROUTED2(ViewMsg_InspectElement, |
242 int /* x */, | 242 int /* x */, |
243 int /* y */) | 243 int /* y */) |
244 | 244 |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1047 // beforeunload or unload handler. | 1047 // beforeunload or unload handler. |
1048 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, | 1048 IPC_MESSAGE_ROUTED1(ViewHostMsg_UnloadListenerChanged, |
1049 bool /* has_listener */) | 1049 bool /* has_listener */) |
1050 | 1050 |
1051 // Returns the window location of the window this widget is embeded in. | 1051 // Returns the window location of the window this widget is embeded in. |
1052 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, | 1052 IPC_SYNC_MESSAGE_ROUTED1_1(ViewHostMsg_GetRootWindowRect, |
1053 HWND /* window */, | 1053 HWND /* window */, |
1054 gfx::Rect /* Out: Window location */) | 1054 gfx::Rect /* Out: Window location */) |
1055 | 1055 |
1056 IPC_END_MESSAGES(ViewHost) | 1056 IPC_END_MESSAGES(ViewHost) |
OLD | NEW |