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

Side by Side Diff: content/public/common/web_preferences.h

Issue 2893243003: color: Add ColorCanvasExtensions runtime flag (Closed)
Patch Set: Fix logic error in ImageBitmap Created 3 years, 7 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 bool should_clear_document_background; 168 bool should_clear_document_background;
169 bool enable_scroll_animator; 169 bool enable_scroll_animator;
170 bool touch_event_feature_detection_enabled; 170 bool touch_event_feature_detection_enabled;
171 bool touch_adjustment_enabled; 171 bool touch_adjustment_enabled;
172 int pointer_events_max_touch_points; 172 int pointer_events_max_touch_points;
173 int available_pointer_types; 173 int available_pointer_types;
174 ui::PointerType primary_pointer_type; 174 ui::PointerType primary_pointer_type;
175 int available_hover_types; 175 int available_hover_types;
176 ui::HoverType primary_hover_type; 176 ui::HoverType primary_hover_type;
177 bool sync_xhr_in_documents_enabled; 177 bool sync_xhr_in_documents_enabled;
178 bool color_canvas_extensions_enabled = false;
178 bool color_correct_rendering_enabled = false; 179 bool color_correct_rendering_enabled = false;
179 bool color_correct_rendering_default_mode_enabled = false;
180 bool should_respect_image_orientation; 180 bool should_respect_image_orientation;
181 int number_of_cpu_cores; 181 int number_of_cpu_cores;
182 EditingBehavior editing_behavior; 182 EditingBehavior editing_behavior;
183 bool supports_multiple_windows; 183 bool supports_multiple_windows;
184 bool viewport_enabled; 184 bool viewport_enabled;
185 bool viewport_meta_enabled; 185 bool viewport_meta_enabled;
186 bool shrinks_viewport_contents_to_fit; 186 bool shrinks_viewport_contents_to_fit;
187 ViewportStyle viewport_style; 187 ViewportStyle viewport_style;
188 bool always_show_context_menu_on_touch; 188 bool always_show_context_menu_on_touch;
189 bool main_frame_resizes_are_orientation_changes; 189 bool main_frame_resizes_are_orientation_changes;
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 // chrome, except for the cases where it would require lots of extra work for 302 // chrome, except for the cases where it would require lots of extra work for
303 // the embedder to use the same default value. 303 // the embedder to use the same default value.
304 WebPreferences(); 304 WebPreferences();
305 WebPreferences(const WebPreferences& other); 305 WebPreferences(const WebPreferences& other);
306 ~WebPreferences(); 306 ~WebPreferences();
307 }; 307 };
308 308
309 } // namespace content 309 } // namespace content
310 310
311 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ 311 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698