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 "base/string16.h" | 10 #include "base/string16.h" |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) | 246 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_bg_color) |
247 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) | 247 IPC_STRUCT_TRAITS_MEMBER(inactive_selection_fg_color) |
248 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) | 248 IPC_STRUCT_TRAITS_MEMBER(browser_handles_non_local_top_level_requests) |
249 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) | 249 IPC_STRUCT_TRAITS_MEMBER(browser_handles_all_top_level_requests) |
250 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) | 250 IPC_STRUCT_TRAITS_MEMBER(caret_blink_interval) |
251 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 251 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
252 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 252 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
253 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 253 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
254 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 254 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
255 IPC_STRUCT_TRAITS_MEMBER(throttle_input_events) | 255 IPC_STRUCT_TRAITS_MEMBER(throttle_input_events) |
| 256 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
256 IPC_STRUCT_TRAITS_END() | 257 IPC_STRUCT_TRAITS_END() |
257 | 258 |
258 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebCookie) | 259 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebCookie) |
259 IPC_STRUCT_TRAITS_MEMBER(name) | 260 IPC_STRUCT_TRAITS_MEMBER(name) |
260 IPC_STRUCT_TRAITS_MEMBER(value) | 261 IPC_STRUCT_TRAITS_MEMBER(value) |
261 IPC_STRUCT_TRAITS_MEMBER(domain) | 262 IPC_STRUCT_TRAITS_MEMBER(domain) |
262 IPC_STRUCT_TRAITS_MEMBER(path) | 263 IPC_STRUCT_TRAITS_MEMBER(path) |
263 IPC_STRUCT_TRAITS_MEMBER(expires) | 264 IPC_STRUCT_TRAITS_MEMBER(expires) |
264 IPC_STRUCT_TRAITS_MEMBER(http_only) | 265 IPC_STRUCT_TRAITS_MEMBER(http_only) |
265 IPC_STRUCT_TRAITS_MEMBER(secure) | 266 IPC_STRUCT_TRAITS_MEMBER(secure) |
(...skipping 2098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2364 int /* arb_robustness_status_code */) | 2365 int /* arb_robustness_status_code */) |
2365 | 2366 |
2366 #if defined(OS_WIN) | 2367 #if defined(OS_WIN) |
2367 // Request that the given font characters be loaded by the browser so it's | 2368 // Request that the given font characters be loaded by the browser so it's |
2368 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2369 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
2369 // for details. | 2370 // for details. |
2370 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2371 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
2371 LOGFONT /* font_data */, | 2372 LOGFONT /* font_data */, |
2372 string16 /* characters */) | 2373 string16 /* characters */) |
2373 #endif | 2374 #endif |
OLD | NEW |