| 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 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) | 220 IPC_STRUCT_TRAITS_MEMBER(max_untiled_layer_height) |
| 221 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) | 221 IPC_STRUCT_TRAITS_MEMBER(fixed_position_creates_stacking_context) |
| 222 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled) | 222 IPC_STRUCT_TRAITS_MEMBER(sync_xhr_in_documents_enabled) |
| 223 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) | 223 IPC_STRUCT_TRAITS_MEMBER(number_of_cpu_cores) |
| 224 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) | 224 IPC_STRUCT_TRAITS_MEMBER(cookie_enabled) |
| 225 IPC_STRUCT_TRAITS_MEMBER(apply_page_scale_factor_in_compositor) | 225 IPC_STRUCT_TRAITS_MEMBER(apply_page_scale_factor_in_compositor) |
| 226 #if defined(OS_ANDROID) | 226 #if defined(OS_ANDROID) |
| 227 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) | 227 IPC_STRUCT_TRAITS_MEMBER(text_autosizing_enabled) |
| 228 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) | 228 IPC_STRUCT_TRAITS_MEMBER(font_scale_factor) |
| 229 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) | 229 IPC_STRUCT_TRAITS_MEMBER(force_enable_zoom) |
| 230 IPC_STRUCT_TRAITS_MEMBER(supports_multiple_windows) |
| 230 #endif | 231 #endif |
| 231 IPC_STRUCT_TRAITS_END() | 232 IPC_STRUCT_TRAITS_END() |
| 232 | 233 |
| 233 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) | 234 IPC_STRUCT_TRAITS_BEGIN(WebMenuItem) |
| 234 IPC_STRUCT_TRAITS_MEMBER(label) | 235 IPC_STRUCT_TRAITS_MEMBER(label) |
| 235 IPC_STRUCT_TRAITS_MEMBER(toolTip) | 236 IPC_STRUCT_TRAITS_MEMBER(toolTip) |
| 236 IPC_STRUCT_TRAITS_MEMBER(type) | 237 IPC_STRUCT_TRAITS_MEMBER(type) |
| 237 IPC_STRUCT_TRAITS_MEMBER(action) | 238 IPC_STRUCT_TRAITS_MEMBER(action) |
| 238 IPC_STRUCT_TRAITS_MEMBER(rtl) | 239 IPC_STRUCT_TRAITS_MEMBER(rtl) |
| 239 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) | 240 IPC_STRUCT_TRAITS_MEMBER(has_directional_override) |
| (...skipping 2143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2383 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, | 2384 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, |
| 2384 GURL /* content_url */) | 2385 GURL /* content_url */) |
| 2385 #endif | 2386 #endif |
| 2386 | 2387 |
| 2387 // Notifies that multiple touch targets may have been pressed, and to show | 2388 // Notifies that multiple touch targets may have been pressed, and to show |
| 2388 // the disambiguation popup. | 2389 // the disambiguation popup. |
| 2389 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, | 2390 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, |
| 2390 gfx::Rect, /* Border of touched targets */ | 2391 gfx::Rect, /* Border of touched targets */ |
| 2391 gfx::Size, /* Size of zoomed image */ | 2392 gfx::Size, /* Size of zoomed image */ |
| 2392 TransportDIB::Id /* DIB of zoomed image */) | 2393 TransportDIB::Id /* DIB of zoomed image */) |
| OLD | NEW |