Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(596)

Side by Side Diff: content/common/view_messages.h

Issue 11192057: [Android] Add supportMultipleWindows setting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) 146 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
147 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 147 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
148 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 148 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
149 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor) 149 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor)
150 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) 150 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
151 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) 151 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size)
152 IPC_STRUCT_TRAITS_MEMBER(default_encoding) 152 IPC_STRUCT_TRAITS_MEMBER(default_encoding)
153 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) 153 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled)
154 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) 154 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled)
155 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) 155 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically)
156 #if defined(OS_ANDROID)
157 IPC_STRUCT_TRAITS_MEMBER(support_multiple_windows)
158 #endif
156 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) 159 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically)
157 IPC_STRUCT_TRAITS_MEMBER(images_enabled) 160 IPC_STRUCT_TRAITS_MEMBER(images_enabled)
158 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) 161 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled)
159 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) 162 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled)
160 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled) 163 IPC_STRUCT_TRAITS_MEMBER(developer_extras_enabled)
161 IPC_STRUCT_TRAITS_MEMBER(inspector_settings) 164 IPC_STRUCT_TRAITS_MEMBER(inspector_settings)
162 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled) 165 IPC_STRUCT_TRAITS_MEMBER(site_specific_quirks_enabled)
163 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit) 166 IPC_STRUCT_TRAITS_MEMBER(shrinks_standalone_images_to_fit)
164 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector) 167 IPC_STRUCT_TRAITS_MEMBER(uses_universal_detector)
165 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable) 168 IPC_STRUCT_TRAITS_MEMBER(text_areas_are_resizable)
(...skipping 2234 matching lines...) Expand 10 before | Expand all | Expand 10 after
2400 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, 2403 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent,
2401 GURL /* content_url */) 2404 GURL /* content_url */)
2402 #endif 2405 #endif
2403 2406
2404 // Notifies that multiple touch targets may have been pressed, and to show 2407 // Notifies that multiple touch targets may have been pressed, and to show
2405 // the disambiguation popup. 2408 // the disambiguation popup.
2406 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, 2409 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup,
2407 gfx::Rect, /* Border of touched targets */ 2410 gfx::Rect, /* Border of touched targets */
2408 gfx::Size, /* Size of zoomed image */ 2411 gfx::Size, /* Size of zoomed image */
2409 TransportDIB::Id /* DIB of zoomed image */) 2412 TransportDIB::Id /* DIB of zoomed image */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698