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" |
11 #include "content/common/css_colors.h" | 11 #include "content/common/css_colors.h" |
12 #include "content/common/edit_command.h" | 12 #include "content/common/edit_command.h" |
13 #include "content/common/navigation_gesture.h" | 13 #include "content/common/navigation_gesture.h" |
14 #include "content/common/view_message_enums.h" | 14 #include "content/common/view_message_enums.h" |
15 #include "content/public/common/common_param_traits.h" | 15 #include "content/public/common/common_param_traits.h" |
16 #include "content/public/common/context_menu_params.h" | 16 #include "content/public/common/context_menu_params.h" |
17 #include "content/public/common/draggable_region.h" | |
17 #include "content/public/common/file_chooser_params.h" | 18 #include "content/public/common/file_chooser_params.h" |
18 #include "content/public/common/frame_navigate_params.h" | 19 #include "content/public/common/frame_navigate_params.h" |
19 #include "content/public/common/javascript_message_type.h" | 20 #include "content/public/common/javascript_message_type.h" |
20 #include "content/public/common/page_zoom.h" | 21 #include "content/public/common/page_zoom.h" |
21 #include "content/public/common/referrer.h" | 22 #include "content/public/common/referrer.h" |
22 #include "content/public/common/renderer_preferences.h" | 23 #include "content/public/common/renderer_preferences.h" |
23 #include "content/public/common/stop_find_action.h" | 24 #include "content/public/common/stop_find_action.h" |
24 #include "content/public/common/webkit_param_traits.h" | 25 #include "content/public/common/webkit_param_traits.h" |
25 #include "content/public/common/window_container_type.h" | 26 #include "content/public/common/window_container_type.h" |
26 #include "ipc/ipc_channel_handle.h" | 27 #include "ipc/ipc_channel_handle.h" |
(...skipping 2151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2178 // (according to the value of is_hung). The browser can give the user the | 2179 // (according to the value of is_hung). The browser can give the user the |
2179 // option of killing the plugin. | 2180 // option of killing the plugin. |
2180 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, | 2181 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, |
2181 int /* plugin_child_id */, | 2182 int /* plugin_child_id */, |
2182 FilePath /* path */, | 2183 FilePath /* path */, |
2183 bool /* is_hung */) | 2184 bool /* is_hung */) |
2184 | 2185 |
2185 // Screen was rotated. Dispatched to the onorientationchange javascript API. | 2186 // Screen was rotated. Dispatched to the onorientationchange javascript API. |
2186 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, | 2187 IPC_MESSAGE_ROUTED1(ViewMsg_OrientationChangeEvent, |
2187 int /* orientation */) | 2188 int /* orientation */) |
2189 | |
2190 // Sent to the browser to update the draggable regions | |
2191 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateDraggableRegions, | |
2192 std::vector<content::DraggableRegion> /* regions */) | |
jeremya
2012/08/07 01:00:17
I talked with jamesr a while ago about the best wa
| |
OLD | NEW |