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

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

Issue 10501006: Connect up flash blacklist entries to GetSettingInt (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: clarify comments Created 8 years, 6 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 | « webkit/glue/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 (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 #include "webkit/glue/webpreferences.h" 5 #include "webkit/glue/webpreferences.h"
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "base/utf_string_conversions.h" 8 #include "base/utf_string_conversions.h"
9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h" 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCompositor.h"
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h" 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNetworkStateNotifi er.h"
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 caret_browsing_enabled(false), 65 caret_browsing_enabled(false),
66 hyperlink_auditing_enabled(true), 66 hyperlink_auditing_enabled(true),
67 is_online(true), 67 is_online(true),
68 user_style_sheet_enabled(false), 68 user_style_sheet_enabled(false),
69 author_and_user_styles_enabled(true), 69 author_and_user_styles_enabled(true),
70 frame_flattening_enabled(false), 70 frame_flattening_enabled(false),
71 allow_universal_access_from_file_urls(false), 71 allow_universal_access_from_file_urls(false),
72 allow_file_access_from_file_urls(false), 72 allow_file_access_from_file_urls(false),
73 webaudio_enabled(false), 73 webaudio_enabled(false),
74 experimental_webgl_enabled(false), 74 experimental_webgl_enabled(false),
75 flash_3d_enabled(true),
76 flash_stage3d_enabled(false),
75 gl_multisampling_enabled(true), 77 gl_multisampling_enabled(true),
76 privileged_webgl_extensions_enabled(false), 78 privileged_webgl_extensions_enabled(false),
77 webgl_errors_to_console_enabled(true), 79 webgl_errors_to_console_enabled(true),
78 show_composited_layer_borders(false), 80 show_composited_layer_borders(false),
79 show_composited_layer_tree(false), 81 show_composited_layer_tree(false),
80 show_fps_counter(false), 82 show_fps_counter(false),
81 show_paint_rects(false), 83 show_paint_rects(false),
82 asynchronous_spell_checking_enabled(true), 84 asynchronous_spell_checking_enabled(true),
83 unified_textchecker_enabled(false), 85 unified_textchecker_enabled(false),
84 threaded_animation_enabled(false), 86 threaded_animation_enabled(false),
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 settings->setMaxUntiledLayerSize( 381 settings->setMaxUntiledLayerSize(
380 WebSize(max_untiled_layer_width, max_untiled_layer_height)); 382 WebSize(max_untiled_layer_width, max_untiled_layer_height));
381 383
382 settings->setFixedPositionCreatesStackingContext( 384 settings->setFixedPositionCreatesStackingContext(
383 fixed_position_creates_stacking_context); 385 fixed_position_creates_stacking_context);
384 386
385 WebNetworkStateNotifier::setOnLine(is_online); 387 WebNetworkStateNotifier::setOnLine(is_online);
386 } 388 }
387 389
388 } // namespace webkit_glue 390 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/webpreferences.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698