| OLD | NEW |
| 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/strings/string_util.h" | 7 #include "base/strings/string_util.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "third_party/WebKit/public/web/WebSettings.h" | 10 #include "third_party/WebKit/public/web/WebSettings.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 privileged_webgl_extensions_enabled(false), | 106 privileged_webgl_extensions_enabled(false), |
| 107 webgl_errors_to_console_enabled(true), | 107 webgl_errors_to_console_enabled(true), |
| 108 mock_scrollbars_enabled(false), | 108 mock_scrollbars_enabled(false), |
| 109 hide_scrollbars(false), | 109 hide_scrollbars(false), |
| 110 accelerated_2d_canvas_enabled(false), | 110 accelerated_2d_canvas_enabled(false), |
| 111 minimum_accelerated_2d_canvas_size(257 * 256), | 111 minimum_accelerated_2d_canvas_size(257 * 256), |
| 112 disable_2d_canvas_copy_on_write(false), | 112 disable_2d_canvas_copy_on_write(false), |
| 113 antialiased_2d_canvas_disabled(false), | 113 antialiased_2d_canvas_disabled(false), |
| 114 antialiased_clips_2d_canvas_enabled(true), | 114 antialiased_clips_2d_canvas_enabled(true), |
| 115 accelerated_2d_canvas_msaa_sample_count(0), | 115 accelerated_2d_canvas_msaa_sample_count(0), |
| 116 force_software_readback_from_2d_canvas(false), | |
| 117 accelerated_filters_enabled(false), | 116 accelerated_filters_enabled(false), |
| 118 deferred_filters_enabled(false), | 117 deferred_filters_enabled(false), |
| 119 container_culling_enabled(false), | 118 container_culling_enabled(false), |
| 120 allow_running_insecure_content(false), | 119 allow_running_insecure_content(false), |
| 121 disable_reading_from_canvas(false), | 120 disable_reading_from_canvas(false), |
| 122 strict_mixed_content_checking(false), | 121 strict_mixed_content_checking(false), |
| 123 strict_powerful_feature_restrictions(false), | 122 strict_powerful_feature_restrictions(false), |
| 124 allow_geolocation_on_insecure_origins(false), | 123 allow_geolocation_on_insecure_origins(false), |
| 125 strictly_block_blockable_mixed_content(false), | 124 strictly_block_blockable_mixed_content(false), |
| 126 block_mixed_plugin_content(false), | 125 block_mixed_plugin_content(false), |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 pictograph_font_family_map[kCommonScript] = | 230 pictograph_font_family_map[kCommonScript] = |
| 232 base::ASCIIToUTF16("Times New Roman"); | 231 base::ASCIIToUTF16("Times New Roman"); |
| 233 } | 232 } |
| 234 | 233 |
| 235 WebPreferences::WebPreferences(const WebPreferences& other) = default; | 234 WebPreferences::WebPreferences(const WebPreferences& other) = default; |
| 236 | 235 |
| 237 WebPreferences::~WebPreferences() { | 236 WebPreferences::~WebPreferences() { |
| 238 } | 237 } |
| 239 | 238 |
| 240 } // namespace content | 239 } // namespace content |
| OLD | NEW |