| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 tabs_to_links(true), | 82 tabs_to_links(true), |
| 83 caret_browsing_enabled(false), | 83 caret_browsing_enabled(false), |
| 84 hyperlink_auditing_enabled(true), | 84 hyperlink_auditing_enabled(true), |
| 85 allow_universal_access_from_file_urls(false), | 85 allow_universal_access_from_file_urls(false), |
| 86 allow_file_access_from_file_urls(false), | 86 allow_file_access_from_file_urls(false), |
| 87 experimental_webgl_enabled(false), | 87 experimental_webgl_enabled(false), |
| 88 pepper_3d_enabled(false), | 88 pepper_3d_enabled(false), |
| 89 flash_3d_enabled(true), | 89 flash_3d_enabled(true), |
| 90 flash_stage3d_enabled(false), | 90 flash_stage3d_enabled(false), |
| 91 flash_stage3d_baseline_enabled(false), | 91 flash_stage3d_baseline_enabled(false), |
| 92 gl_multisampling_enabled(true), | |
| 93 privileged_webgl_extensions_enabled(false), | 92 privileged_webgl_extensions_enabled(false), |
| 94 webgl_errors_to_console_enabled(true), | 93 webgl_errors_to_console_enabled(true), |
| 95 mock_scrollbars_enabled(false), | 94 mock_scrollbars_enabled(false), |
| 96 unified_textchecker_enabled(false), | 95 unified_textchecker_enabled(false), |
| 97 accelerated_2d_canvas_enabled(false), | 96 accelerated_2d_canvas_enabled(false), |
| 98 minimum_accelerated_2d_canvas_size(257 * 256), | 97 minimum_accelerated_2d_canvas_size(257 * 256), |
| 99 disable_2d_canvas_copy_on_write(false), | 98 disable_2d_canvas_copy_on_write(false), |
| 100 antialiased_2d_canvas_disabled(false), | 99 antialiased_2d_canvas_disabled(false), |
| 101 antialiased_clips_2d_canvas_enabled(false), | 100 antialiased_clips_2d_canvas_enabled(false), |
| 102 accelerated_2d_canvas_msaa_sample_count(0), | 101 accelerated_2d_canvas_msaa_sample_count(0), |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 pictograph_font_family_map[kCommonScript] = | 206 pictograph_font_family_map[kCommonScript] = |
| 208 base::ASCIIToUTF16("Times New Roman"); | 207 base::ASCIIToUTF16("Times New Roman"); |
| 209 } | 208 } |
| 210 | 209 |
| 211 WebPreferences::WebPreferences(const WebPreferences& other) = default; | 210 WebPreferences::WebPreferences(const WebPreferences& other) = default; |
| 212 | 211 |
| 213 WebPreferences::~WebPreferences() { | 212 WebPreferences::~WebPreferences() { |
| 214 } | 213 } |
| 215 | 214 |
| 216 } // namespace content | 215 } // namespace content |
| OLD | NEW |