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" |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) | 211 IPC_STRUCT_TRAITS_MEMBER(focus_ring_color) |
212 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) | 212 IPC_STRUCT_TRAITS_MEMBER(thumb_active_color) |
213 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) | 213 IPC_STRUCT_TRAITS_MEMBER(thumb_inactive_color) |
214 IPC_STRUCT_TRAITS_MEMBER(track_color) | 214 IPC_STRUCT_TRAITS_MEMBER(track_color) |
215 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) | 215 IPC_STRUCT_TRAITS_MEMBER(active_selection_bg_color) |
216 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) | 216 IPC_STRUCT_TRAITS_MEMBER(active_selection_fg_color) |
217 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 217 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
218 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 218 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
219 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) | 219 IPC_STRUCT_TRAITS_MEMBER(browser_handles_top_level_requests) |
220 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 220 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
| 221 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
221 IPC_STRUCT_TRAITS_END() | 222 IPC_STRUCT_TRAITS_END() |
222 | 223 |
223 IPC_STRUCT_TRAITS_BEGIN(ViewMsg_StopFinding_Params) | 224 IPC_STRUCT_TRAITS_BEGIN(ViewMsg_StopFinding_Params) |
224 IPC_STRUCT_TRAITS_MEMBER(action) | 225 IPC_STRUCT_TRAITS_MEMBER(action) |
225 IPC_STRUCT_TRAITS_END() | 226 IPC_STRUCT_TRAITS_END() |
226 | 227 |
227 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCompositionUnderline) | 228 IPC_STRUCT_TRAITS_BEGIN(WebKit::WebCompositionUnderline) |
228 IPC_STRUCT_TRAITS_MEMBER(startOffset) | 229 IPC_STRUCT_TRAITS_MEMBER(startOffset) |
229 IPC_STRUCT_TRAITS_MEMBER(endOffset) | 230 IPC_STRUCT_TRAITS_MEMBER(endOffset) |
230 IPC_STRUCT_TRAITS_MEMBER(color) | 231 IPC_STRUCT_TRAITS_MEMBER(color) |
(...skipping 1644 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1875 // enable or disable spdy. Used for debugging/testing/benchmarking. | 1876 // enable or disable spdy. Used for debugging/testing/benchmarking. |
1876 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, | 1877 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, |
1877 bool /* enable */) | 1878 bool /* enable */) |
1878 | 1879 |
1879 // Message sent from the renderer to the browser to request that the browser | 1880 // Message sent from the renderer to the browser to request that the browser |
1880 // cache |data| associated with |url|. | 1881 // cache |data| associated with |url|. |
1881 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, | 1882 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
1882 GURL /* url */, | 1883 GURL /* url */, |
1883 double /* expected_response_time */, | 1884 double /* expected_response_time */, |
1884 std::vector<char> /* data */) | 1885 std::vector<char> /* data */) |
OLD | NEW |