| 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 1652 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1883 // enable or disable spdy. Used for debugging/testing/benchmarking. | 1884 // enable or disable spdy. Used for debugging/testing/benchmarking. |
| 1884 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, | 1885 IPC_MESSAGE_CONTROL1(ViewHostMsg_EnableSpdy, |
| 1885 bool /* enable */) | 1886 bool /* enable */) |
| 1886 | 1887 |
| 1887 // Message sent from the renderer to the browser to request that the browser | 1888 // Message sent from the renderer to the browser to request that the browser |
| 1888 // cache |data| associated with |url|. | 1889 // cache |data| associated with |url|. |
| 1889 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, | 1890 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, |
| 1890 GURL /* url */, | 1891 GURL /* url */, |
| 1891 double /* expected_response_time */, | 1892 double /* expected_response_time */, |
| 1892 std::vector<char> /* data */) | 1893 std::vector<char> /* data */) |
| OLD | NEW |