OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 10 matching lines...) Expand all Loading... | |
21 #include "content/public/common/renderer_preferences.h" | 21 #include "content/public/common/renderer_preferences.h" |
22 #include "content/public/common/selected_file_info.h" | 22 #include "content/public/common/selected_file_info.h" |
23 #include "content/public/common/stop_find_action.h" | 23 #include "content/public/common/stop_find_action.h" |
24 #include "content/public/common/webkit_param_traits.h" | 24 #include "content/public/common/webkit_param_traits.h" |
25 #include "content/public/common/window_container_type.h" | 25 #include "content/public/common/window_container_type.h" |
26 #include "ipc/ipc_channel_handle.h" | 26 #include "ipc/ipc_channel_handle.h" |
27 #include "ipc/ipc_message_macros.h" | 27 #include "ipc/ipc_message_macros.h" |
28 #include "ipc/ipc_platform_file.h" | 28 #include "ipc/ipc_platform_file.h" |
29 #include "media/base/channel_layout.h" | 29 #include "media/base/channel_layout.h" |
30 #include "media/base/media_log_event.h" | 30 #include "media/base/media_log_event.h" |
31 #include "ppapi/c/pp_instance.h" | |
jam
2012/05/16 02:22:40
needed?
Fady Samuel
2012/05/16 04:43:54
No, sorry. Removed.
| |
31 #include "third_party/skia/include/core/SkBitmap.h" | 32 #include "third_party/skia/include/core/SkBitmap.h" |
32 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli ne.h" | 33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli ne.h" |
33 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" | 34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h" |
34 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
35 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction. h" | 36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction. h" |
36 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginAction.h" | 37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginAction.h" |
37 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
38 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 39 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
39 #include "ui/base/ime/text_input_type.h" | 40 #include "ui/base/ime/text_input_type.h" |
40 #include "ui/base/javascript_message_type.h" | 41 #include "ui/base/javascript_message_type.h" |
(...skipping 2018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2059 // (according to the value of is_hung). The browser can give the user the | 2060 // (according to the value of is_hung). The browser can give the user the |
2060 // option of killing the plugin. | 2061 // option of killing the plugin. |
2061 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2062 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2062 int /* plugin_child_id */, | 2063 int /* plugin_child_id */, |
2063 FilePath /* path */, | 2064 FilePath /* path */, |
2064 bool /* is_hung */) | 2065 bool /* is_hung */) |
2065 | 2066 |
2066 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2067 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2067 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2068 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2068 int /* orientation */) | 2069 int /* orientation */) |
OLD | NEW |