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 "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
139 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) | 139 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) |
140 IPC_STRUCT_TRAITS_MEMBER(default_font_size) | 140 IPC_STRUCT_TRAITS_MEMBER(default_font_size) |
141 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) | 141 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) |
142 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor) | 142 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor) |
143 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) | 143 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) |
144 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) | 144 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) |
145 IPC_STRUCT_TRAITS_MEMBER(default_encoding) | 145 IPC_STRUCT_TRAITS_MEMBER(default_encoding) |
146 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) | 146 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) |
147 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) | 147 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) |
148 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) | 148 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) |
149 #if defined(OS_ANDROID) | |
150 IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows) | |
joth
2012/10/25 17:27:18
ditto comment from other thread about putting this
mnaganov (inactive)
2012/10/26 10:05:42
Done.
| |
151 #endif | |
149 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) | 152 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) |
150 IPC_STRUCT_TRAITS_MEMBER(images_enabled) | 153 IPC_STRUCT_TRAITS_MEMBER(images_enabled) |
151 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) | 154 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) |
152 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) | 155 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) |
153 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) | 156 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) |
154 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) | 157 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) |
155 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) | 158 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) |
156 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) | 159 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) |
157 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) | 160 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) |
158 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) | 161 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) |
(...skipping 2239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2398 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, | 2401 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
2399 GURL /* content_url */) | 2402 GURL /* content_url */) |
2400 #endif | 2403 #endif |
2401 | 2404 |
2402 // Notifies that multiple touch targets may have been pressed, and to show | 2405 // Notifies that multiple touch targets may have been pressed, and to show |
2403 // the disambiguation popup. | 2406 // the disambiguation popup. |
2404 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, | 2407 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, |
2405 gfx::Rect, /* Border of touched targets */ | 2408 gfx::Rect, /* Border of touched targets */ |
2406 gfx::Size, /* Size of zoomed image */ | 2409 gfx::Size, /* Size of zoomed image */ |
2407 TransportDIB::Id /* DIB of zoomed image */) | 2410 TransportDIB::Id /* DIB of zoomed image */) |
OLD | NEW |