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

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

Issue 11361223: cc: Remove cc::settings, move them to LayerTreeSettings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix-unittests Created 8 years, 1 month 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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences) 134 IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebPreferences)
135 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map) 135 IPC_STRUCT_TRAITS_MEMBER(standard_font_family_map)
136 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map) 136 IPC_STRUCT_TRAITS_MEMBER(fixed_font_family_map)
137 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map) 137 IPC_STRUCT_TRAITS_MEMBER(serif_font_family_map)
138 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map) 138 IPC_STRUCT_TRAITS_MEMBER(sans_serif_font_family_map)
139 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map) 139 IPC_STRUCT_TRAITS_MEMBER(cursive_font_family_map)
140 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map) 140 IPC_STRUCT_TRAITS_MEMBER(fantasy_font_family_map)
141 IPC_STRUCT_TRAITS_MEMBER(default_font_size) 141 IPC_STRUCT_TRAITS_MEMBER(default_font_size)
142 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size) 142 IPC_STRUCT_TRAITS_MEMBER(default_fixed_font_size)
143 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor) 143 IPC_STRUCT_TRAITS_MEMBER(apply_default_device_scale_factor_in_compositor)
144 IPC_STRUCT_TRAITS_MEMBER(apply_page_scale_factor_in_compositor)
145 IPC_STRUCT_TRAITS_MEMBER(per_tile_painting_enabled)
146 IPC_STRUCT_TRAITS_MEMBER(accelerated_animation_enabled)
144 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size) 147 IPC_STRUCT_TRAITS_MEMBER(minimum_font_size)
145 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size) 148 IPC_STRUCT_TRAITS_MEMBER(minimum_logical_font_size)
146 IPC_STRUCT_TRAITS_MEMBER(default_encoding) 149 IPC_STRUCT_TRAITS_MEMBER(default_encoding)
147 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled) 150 IPC_STRUCT_TRAITS_MEMBER(javascript_enabled)
148 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled) 151 IPC_STRUCT_TRAITS_MEMBER(web_security_enabled)
149 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically) 152 IPC_STRUCT_TRAITS_MEMBER(javascript_can_open_windows_automatically)
150 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically) 153 IPC_STRUCT_TRAITS_MEMBER(loads_images_automatically)
151 IPC_STRUCT_TRAITS_MEMBER(images_enabled) 154 IPC_STRUCT_TRAITS_MEMBER(images_enabled)
152 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled) 155 IPC_STRUCT_TRAITS_MEMBER(plugins_enabled)
153 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled) 156 IPC_STRUCT_TRAITS_MEMBER(dom_paste_enabled)
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled) 194 IPC_STRUCT_TRAITS_MEMBER(asynchronous_spell_checking_enabled)
192 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled) 195 IPC_STRUCT_TRAITS_MEMBER(unified_textchecker_enabled)
193 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled) 196 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_enabled)
194 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode) 197 IPC_STRUCT_TRAITS_MEMBER(force_compositing_mode)
195 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled) 198 IPC_STRUCT_TRAITS_MEMBER(fixed_position_compositing_enabled)
196 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled) 199 IPC_STRUCT_TRAITS_MEMBER(accelerated_2d_canvas_enabled)
197 IPC_STRUCT_TRAITS_MEMBER(deferred_2d_canvas_enabled) 200 IPC_STRUCT_TRAITS_MEMBER(deferred_2d_canvas_enabled)
198 IPC_STRUCT_TRAITS_MEMBER(accelerated_painting_enabled) 201 IPC_STRUCT_TRAITS_MEMBER(accelerated_painting_enabled)
199 IPC_STRUCT_TRAITS_MEMBER(accelerated_filters_enabled) 202 IPC_STRUCT_TRAITS_MEMBER(accelerated_filters_enabled)
200 IPC_STRUCT_TRAITS_MEMBER(gesture_tap_highlight_enabled) 203 IPC_STRUCT_TRAITS_MEMBER(gesture_tap_highlight_enabled)
201 IPC_STRUCT_TRAITS_MEMBER(accelerated_plugins_enabled) 204 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_plugins_enabled)
202 IPC_STRUCT_TRAITS_MEMBER(accelerated_layers_enabled) 205 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_3d_transforms_enabled)
203 IPC_STRUCT_TRAITS_MEMBER(accelerated_animation_enabled) 206 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_animation_enabled)
204 IPC_STRUCT_TRAITS_MEMBER(accelerated_video_enabled) 207 IPC_STRUCT_TRAITS_MEMBER(accelerated_compositing_for_video_enabled)
205 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled) 208 IPC_STRUCT_TRAITS_MEMBER(memory_info_enabled)
206 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled) 209 IPC_STRUCT_TRAITS_MEMBER(fullscreen_enabled)
207 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content) 210 IPC_STRUCT_TRAITS_MEMBER(allow_displaying_insecure_content)
208 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content) 211 IPC_STRUCT_TRAITS_MEMBER(allow_running_insecure_content)
209 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator) 212 IPC_STRUCT_TRAITS_MEMBER(enable_scroll_animator)
210 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled) 213 IPC_STRUCT_TRAITS_MEMBER(visual_word_movement_enabled)
211 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled) 214 IPC_STRUCT_TRAITS_MEMBER(password_echo_enabled)
212 IPC_STRUCT_TRAITS_MEMBER(css_sticky_position_enabled) 215 IPC_STRUCT_TRAITS_MEMBER(css_sticky_position_enabled)
213 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled) 216 IPC_STRUCT_TRAITS_MEMBER(css_regions_enabled)
214 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled) 217 IPC_STRUCT_TRAITS_MEMBER(css_shaders_enabled)
(...skipping 2181 matching lines...) Expand 10 before | Expand all | Expand 10 after
2396 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent, 2399 IPC_MESSAGE_ROUTED1(ViewHostMsg_StartContentIntent,
2397 GURL /* content_url */) 2400 GURL /* content_url */)
2398 #endif 2401 #endif
2399 2402
2400 // Notifies that multiple touch targets may have been pressed, and to show 2403 // Notifies that multiple touch targets may have been pressed, and to show
2401 // the disambiguation popup. 2404 // the disambiguation popup.
2402 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup, 2405 IPC_MESSAGE_ROUTED3(ViewHostMsg_ShowDisambiguationPopup,
2403 gfx::Rect, /* Border of touched targets */ 2406 gfx::Rect, /* Border of touched targets */
2404 gfx::Size, /* Size of zoomed image */ 2407 gfx::Size, /* Size of zoomed image */
2405 TransportDIB::Id /* DIB of zoomed image */) 2408 TransportDIB::Id /* DIB of zoomed image */)
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/renderer/pepper/pepper_plugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698