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

Side by Side Diff: webkit/common/webpreferences.cc

Issue 77083002: Add chromium side flag for enabling/disabling layer squashing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased Created 7 years 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
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "webkit/common/webpreferences.h" 5 #include "webkit/common/webpreferences.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/strings/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "third_party/WebKit/public/web/WebSettings.h" 10 #include "third_party/WebKit/public/web/WebSettings.h"
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 flash_stage3d_enabled(false), 51 flash_stage3d_enabled(false),
52 flash_stage3d_baseline_enabled(false), 52 flash_stage3d_baseline_enabled(false),
53 gl_multisampling_enabled(true), 53 gl_multisampling_enabled(true),
54 privileged_webgl_extensions_enabled(false), 54 privileged_webgl_extensions_enabled(false),
55 webgl_errors_to_console_enabled(true), 55 webgl_errors_to_console_enabled(true),
56 accelerated_compositing_for_overflow_scroll_enabled(false), 56 accelerated_compositing_for_overflow_scroll_enabled(false),
57 universal_accelerated_compositing_for_overflow_scroll_enabled(false), 57 universal_accelerated_compositing_for_overflow_scroll_enabled(false),
58 accelerated_compositing_for_scrollable_frames_enabled(false), 58 accelerated_compositing_for_scrollable_frames_enabled(false),
59 composited_scrolling_for_frames_enabled(false), 59 composited_scrolling_for_frames_enabled(false),
60 mock_scrollbars_enabled(false), 60 mock_scrollbars_enabled(false),
61 layer_squashing_enabled(false),
61 threaded_html_parser(true), 62 threaded_html_parser(true),
62 show_paint_rects(false), 63 show_paint_rects(false),
63 asynchronous_spell_checking_enabled(true), 64 asynchronous_spell_checking_enabled(true),
64 unified_textchecker_enabled(false), 65 unified_textchecker_enabled(false),
65 accelerated_compositing_enabled(false), 66 accelerated_compositing_enabled(false),
66 force_compositing_mode(false), 67 force_compositing_mode(false),
67 accelerated_compositing_for_3d_transforms_enabled(false), 68 accelerated_compositing_for_3d_transforms_enabled(false),
68 accelerated_compositing_for_animation_enabled(false), 69 accelerated_compositing_for_animation_enabled(false),
69 accelerated_compositing_for_video_enabled(false), 70 accelerated_compositing_for_video_enabled(false),
70 accelerated_2d_canvas_enabled(false), 71 accelerated_2d_canvas_enabled(false),
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 COMPILE_ASSERT_MATCHING_ENUMS( 177 COMPILE_ASSERT_MATCHING_ENUMS(
177 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); 178 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac);
178 COMPILE_ASSERT_MATCHING_ENUMS( 179 COMPILE_ASSERT_MATCHING_ENUMS(
179 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); 180 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin);
180 COMPILE_ASSERT_MATCHING_ENUMS( 181 COMPILE_ASSERT_MATCHING_ENUMS(
181 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); 182 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix);
182 COMPILE_ASSERT_MATCHING_ENUMS( 183 COMPILE_ASSERT_MATCHING_ENUMS(
183 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); 184 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid);
184 185
185 } // namespace webkit_glue 186 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/common/webpreferences.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698