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 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
281 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 281 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
282 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 282 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
283 IPC_STRUCT_TRAITS_MEMBER(track_color) | 283 IPC_STRUCT_TRAITS_MEMBER(track_color) |
284 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 284 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
285 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 285 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
286 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 286 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
287 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 287 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
288 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) | 288 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) |
289 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 289 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
290 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 290 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 291 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
291 IPC_STRUCT_TRAITS_END() | 292 IPC_STRUCT_TRAITS_END() |
292 | 293 |
293 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::CustomContextMenuContext) | 294 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::CustomContextMenuContext) |
294 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) | 295 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) |
295 IPC_STRUCT_TRAITS_MEMBER(request_id) | 296 IPC_STRUCT_TRAITS_MEMBER(request_id) |
296 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) | 297 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) |
297 IPC_STRUCT_TRAITS_END() | 298 IPC_STRUCT_TRAITS_END() |
298 | 299 |
299 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebAccessibility) | 300 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebAccessibility) |
300 IPC_STRUCT_TRAITS_MEMBER(id) | 301 IPC_STRUCT_TRAITS_MEMBER(id) |
(...skipping 1656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1957 media::MediaLogEvent /* event */) | 1958 media::MediaLogEvent /* event */) |
1958 | 1959 |
1959 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1960 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1960 // being sent back. | 1961 // being sent back. |
1961 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1962 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1962 | 1963 |
1963 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1964 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1964 // whenever the mouse is unlocked (which may or may not be caused by | 1965 // whenever the mouse is unlocked (which may or may not be caused by |
1965 // ViewHostMsg_UnlockMouse). | 1966 // ViewHostMsg_UnlockMouse). |
1966 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1967 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |