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 13 matching lines...) Expand all Loading... |
24 #include "ipc/ipc_channel_handle.h" | 24 #include "ipc/ipc_channel_handle.h" |
25 #include "ipc/ipc_message_macros.h" | 25 #include "ipc/ipc_message_macros.h" |
26 #include "ipc/ipc_platform_file.h" | 26 #include "ipc/ipc_platform_file.h" |
27 #include "media/base/media_log_event.h" | 27 #include "media/base/media_log_event.h" |
28 #include "third_party/skia/include/core/SkBitmap.h" | 28 #include "third_party/skia/include/core/SkBitmap.h" |
29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 29 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 30 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 31 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" | 32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebReferrerPolicy.h" | |
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
36 #include "ui/base/ime/text_input_type.h" | 35 #include "ui/base/ime/text_input_type.h" |
37 #include "ui/base/range/range.h" | 36 #include "ui/base/range/range.h" |
38 #include "ui/gfx/rect.h" | 37 #include "ui/gfx/rect.h" |
39 #include "webkit/glue/context_menu.h" | 38 #include "webkit/glue/context_menu.h" |
40 #include "webkit/glue/webcookie.h" | 39 #include "webkit/glue/webcookie.h" |
41 #include "webkit/glue/webmenuitem.h" | 40 #include "webkit/glue/webmenuitem.h" |
42 #include "webkit/glue/webpreferences.h" | 41 #include "webkit/glue/webpreferences.h" |
43 #include "webkit/glue/webaccessibility.h" | 42 #include "webkit/glue/webaccessibility.h" |
44 #include "webkit/plugins/npapi/webplugin.h" | 43 #include "webkit/plugins/npapi/webplugin.h" |
(...skipping 1905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1950 media::MediaLogEvent /* event */) | 1949 media::MediaLogEvent /* event */) |
1951 | 1950 |
1952 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message | 1951 // Requests to lock the mouse. Will result in a ViewMsg_LockMouse_ACK message |
1953 // being sent back. | 1952 // being sent back. |
1954 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) | 1953 IPC_MESSAGE_ROUTED0(ViewHostMsg_LockMouse) |
1955 | 1954 |
1956 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent | 1955 // Requests to unlock the mouse. A ViewMsg_MouseLockLost message will be sent |
1957 // whenever the mouse is unlocked (which may or may not be caused by | 1956 // whenever the mouse is unlocked (which may or may not be caused by |
1958 // ViewHostMsg_UnlockMouse). | 1957 // ViewHostMsg_UnlockMouse). |
1959 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) | 1958 IPC_MESSAGE_ROUTED0(ViewHostMsg_UnlockMouse) |
OLD | NEW |