| 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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(use_custom_colors) | 251 IPC_STRUCT_TRAITS_MEMBER(use_custom_colors) |
| 252 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) | 252 IPC_STRUCT_TRAITS_MEMBER(enable_referrers) |
| 253 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) | 253 IPC_STRUCT_TRAITS_MEMBER(enable_do_not_track) |
| 254 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) | 254 IPC_STRUCT_TRAITS_MEMBER(default_zoom_level) |
| 255 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) | 255 IPC_STRUCT_TRAITS_MEMBER(user_agent_override) |
| 256 IPC_STRUCT_TRAITS_MEMBER(throttle_input_events) | 256 IPC_STRUCT_TRAITS_MEMBER(throttle_input_events) |
| 257 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) | 257 IPC_STRUCT_TRAITS_MEMBER(report_frame_name_changes) |
| 258 IPC_STRUCT_TRAITS_MEMBER(allow_partial_swap) |
| 258 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) | 259 IPC_STRUCT_TRAITS_MEMBER(touchpad_fling_profile) |
| 259 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) | 260 IPC_STRUCT_TRAITS_MEMBER(touchscreen_fling_profile) |
| 260 IPC_STRUCT_TRAITS_END() | 261 IPC_STRUCT_TRAITS_END() |
| 261 | 262 |
| 262 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebCookie) | 263 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebCookie) |
| 263 IPC_STRUCT_TRAITS_MEMBER(name) | 264 IPC_STRUCT_TRAITS_MEMBER(name) |
| 264 IPC_STRUCT_TRAITS_MEMBER(value) | 265 IPC_STRUCT_TRAITS_MEMBER(value) |
| 265 IPC_STRUCT_TRAITS_MEMBER(domain) | 266 IPC_STRUCT_TRAITS_MEMBER(domain) |
| 266 IPC_STRUCT_TRAITS_MEMBER(path) | 267 IPC_STRUCT_TRAITS_MEMBER(path) |
| 267 IPC_STRUCT_TRAITS_MEMBER(expires) | 268 IPC_STRUCT_TRAITS_MEMBER(expires) |
| (...skipping 2155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2423 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters | 2424 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters |
| 2424 // for details. | 2425 // for details. |
| 2425 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, | 2426 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, |
| 2426 LOGFONT /* font_data */, | 2427 LOGFONT /* font_data */, |
| 2427 string16 /* characters */) | 2428 string16 /* characters */) |
| 2428 #endif | 2429 #endif |
| 2429 | 2430 |
| 2430 // Adding a new message? Stick to the sort order above: first platform | 2431 // Adding a new message? Stick to the sort order above: first platform |
| 2431 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform | 2432 // independent ViewMsg, then ifdefs for platform specific ViewMsg, then platform |
| 2432 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. | 2433 // independent ViewHostMsg, then ifdefs for platform specific ViewHostMsg. |
| OLD | NEW |