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" | 10 #include "content/common/common_param_traits.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/page_transition_types.h" | 14 #include "content/common/page_transition_types.h" |
15 #include "content/common/page_zoom.h" | 15 #include "content/common/page_zoom.h" |
16 #include "content/common/renderer_preferences.h" | 16 #include "content/common/renderer_preferences.h" |
| 17 #include "content/common/webkit_param_traits.h" |
17 #include "content/common/window_container_type.h" | 18 #include "content/common/window_container_type.h" |
18 #include "ipc/ipc_message_macros.h" | 19 #include "ipc/ipc_message_macros.h" |
19 #include "ipc/ipc_platform_file.h" | 20 #include "ipc/ipc_platform_file.h" |
20 #include "net/base/host_port_pair.h" | 21 #include "net/base/host_port_pair.h" |
21 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" | 22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositionUnderli
ne.h" |
22 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFindOptions.h" |
23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" | 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebMediaPlayerAction.
h" |
24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" | 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h" |
25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" | 26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebScreenInfo.h" |
26 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputType.h" | 27 #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextInputType.h" |
(...skipping 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1893 // enable or disable spdy. Used for debugging/testing/benchmarking. | 1894 // enable or disable spdy. Used for debugging/testing/benchmarking. |
1894 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, | 1895 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, |
1895 bool /* enable */) | 1896 bool /* enable */) |
1896 | 1897 |
1897 // Message sent from the renderer to the browser to request that the browser | 1898 // Message sent from the renderer to the browser to request that the browser |
1898 // cache |data| associated with |url|. | 1899 // cache |data| associated with |url|. |
1899 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, | 1900 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
1900 GURL /* url */, | 1901 GURL /* url */, |
1901 double /* expected_response_time */, | 1902 double /* expected_response_time */, |
1902 std::vector<char> /* data */) | 1903 std::vector<char> /* data */) |
OLD | NEW |