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/common_param_traits.h" | |
11 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
12 #include "content/common/css_colors.h" | 11 #include "content/common/css_colors.h" |
13 #include "content/common/edit_command.h" | 12 #include "content/common/edit_command.h" |
14 #include "content/common/navigation_gesture.h" | 13 #include "content/common/navigation_gesture.h" |
15 #include "content/common/page_zoom.h" | 14 #include "content/common/page_zoom.h" |
16 #include "content/common/renderer_preferences.h" | 15 #include "content/common/renderer_preferences.h" |
17 #include "content/common/view_message_enums.h" | 16 #include "content/common/view_message_enums.h" |
18 #include "content/common/webkit_param_traits.h" | 17 #include "content/public/common/common_param_traits.h" |
| 18 #include "content/public/common/webkit_param_traits.h" |
19 #include "content/public/common/window_container_type.h" | 19 #include "content/public/common/window_container_type.h" |
20 #include "ipc/ipc_channel_handle.h" | 20 #include "ipc/ipc_channel_handle.h" |
21 #include "ipc/ipc_message_macros.h" | 21 #include "ipc/ipc_message_macros.h" |
22 #include "ipc/ipc_platform_file.h" | 22 #include "ipc/ipc_platform_file.h" |
23 #include "media/base/media_log_event.h" | 23 #include "media/base/media_log_event.h" |
24 #include "net/base/host_port_pair.h" | 24 #include "net/base/host_port_pair.h" |
25 #include "third_party/skia/include/core/SkBitmap.h" | 25 #include "third_party/skia/include/core/SkBitmap.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 28 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
(...skipping 1912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1941 media::MediaLogEvent /* event */) | 1941 media::MediaLogEvent /* event */) |
1942 | 1942 |
1943 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1943 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1944 // being sent back. | 1944 // being sent back. |
1945 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1945 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1946 | 1946 |
1947 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1947 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1948 // whenever the mouse is unlocked (which may or may not be caused by | 1948 // whenever the mouse is unlocked (which may or may not be caused by |
1949 // ViewHostMsg_UnlockMouse). | 1949 // ViewHostMsg_UnlockMouse). |
1950 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1950 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |