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

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

Issue 443573004: Stop setting AcceleratedCompositingForVideoEnabled in LayoutTests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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
« no previous file with comments | « content/public/common/web_preferences.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "content/public/common/web_preferences.h" 5 #include "content/public/common/web_preferences.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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 flash_3d_enabled(true), 71 flash_3d_enabled(true),
72 flash_stage3d_enabled(false), 72 flash_stage3d_enabled(false),
73 flash_stage3d_baseline_enabled(false), 73 flash_stage3d_baseline_enabled(false),
74 gl_multisampling_enabled(true), 74 gl_multisampling_enabled(true),
75 privileged_webgl_extensions_enabled(false), 75 privileged_webgl_extensions_enabled(false),
76 webgl_errors_to_console_enabled(true), 76 webgl_errors_to_console_enabled(true),
77 mock_scrollbars_enabled(false), 77 mock_scrollbars_enabled(false),
78 layer_squashing_enabled(true), 78 layer_squashing_enabled(true),
79 asynchronous_spell_checking_enabled(true), 79 asynchronous_spell_checking_enabled(true),
80 unified_textchecker_enabled(false), 80 unified_textchecker_enabled(false),
81 accelerated_compositing_for_video_enabled(true),
82 accelerated_2d_canvas_enabled(false), 81 accelerated_2d_canvas_enabled(false),
83 minimum_accelerated_2d_canvas_size(257 * 256), 82 minimum_accelerated_2d_canvas_size(257 * 256),
84 antialiased_2d_canvas_disabled(false), 83 antialiased_2d_canvas_disabled(false),
85 accelerated_2d_canvas_msaa_sample_count(0), 84 accelerated_2d_canvas_msaa_sample_count(0),
86 accelerated_filters_enabled(false), 85 accelerated_filters_enabled(false),
87 deferred_filters_enabled(false), 86 deferred_filters_enabled(false),
88 container_culling_enabled(false), 87 container_culling_enabled(false),
89 allow_displaying_insecure_content(true), 88 allow_displaying_insecure_content(true),
90 allow_running_insecure_content(false), 89 allow_running_insecure_content(false),
91 password_echo_enabled(false), 90 password_echo_enabled(false),
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); 160 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script");
162 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); 161 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact");
163 pictograph_font_family_map[kCommonScript] = 162 pictograph_font_family_map[kCommonScript] =
164 base::ASCIIToUTF16("Times New Roman"); 163 base::ASCIIToUTF16("Times New Roman");
165 } 164 }
166 165
167 WebPreferences::~WebPreferences() { 166 WebPreferences::~WebPreferences() {
168 } 167 }
169 168
170 } // namespace content 169 } // namespace content
OLDNEW
« no previous file with comments | « content/public/common/web_preferences.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698