| 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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 219 default_maximum_page_scale_factor(3.f), | 219 default_maximum_page_scale_factor(3.f), |
| 220 #else | 220 #else |
| 221 default_minimum_page_scale_factor(1.f), | 221 default_minimum_page_scale_factor(1.f), |
| 222 default_maximum_page_scale_factor(4.f), | 222 default_maximum_page_scale_factor(4.f), |
| 223 #endif | 223 #endif |
| 224 hide_download_ui(false), | 224 hide_download_ui(false), |
| 225 background_video_track_optimization_enabled(false), | 225 background_video_track_optimization_enabled(false), |
| 226 enable_instant_source_buffer_gc(false), | 226 enable_instant_source_buffer_gc(false), |
| 227 presentation_receiver(false), | 227 presentation_receiver(false), |
| 228 media_controls_enabled(true), | 228 media_controls_enabled(true), |
| 229 automation_controlled(false), |
| 229 do_not_update_selection_on_mutating_selection_range(false), | 230 do_not_update_selection_on_mutating_selection_range(false), |
| 230 #if defined(OS_ANDROID) | 231 #if defined(OS_ANDROID) |
| 231 autoplay_policy(AutoplayPolicy::kUserGestureRequired) { | 232 autoplay_policy(AutoplayPolicy::kUserGestureRequired) { |
| 232 #else | 233 #else |
| 233 autoplay_policy(AutoplayPolicy::kNoUserGestureRequired) { | 234 autoplay_policy(AutoplayPolicy::kNoUserGestureRequired) { |
| 234 #endif // defined(OS_ANDROID) | 235 #endif // defined(OS_ANDROID) |
| 235 standard_font_family_map[kCommonScript] = | 236 standard_font_family_map[kCommonScript] = |
| 236 base::ASCIIToUTF16("Times New Roman"); | 237 base::ASCIIToUTF16("Times New Roman"); |
| 237 fixed_font_family_map[kCommonScript] = base::ASCIIToUTF16("Courier New"); | 238 fixed_font_family_map[kCommonScript] = base::ASCIIToUTF16("Courier New"); |
| 238 serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Times New Roman"); | 239 serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Times New Roman"); |
| 239 sans_serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Arial"); | 240 sans_serif_font_family_map[kCommonScript] = base::ASCIIToUTF16("Arial"); |
| 240 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); | 241 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); |
| 241 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); | 242 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); |
| 242 pictograph_font_family_map[kCommonScript] = | 243 pictograph_font_family_map[kCommonScript] = |
| 243 base::ASCIIToUTF16("Times New Roman"); | 244 base::ASCIIToUTF16("Times New Roman"); |
| 244 } | 245 } |
| 245 | 246 |
| 246 WebPreferences::WebPreferences(const WebPreferences& other) = default; | 247 WebPreferences::WebPreferences(const WebPreferences& other) = default; |
| 247 | 248 |
| 248 WebPreferences::~WebPreferences() { | 249 WebPreferences::~WebPreferences() { |
| 249 } | 250 } |
| 250 | 251 |
| 251 } // namespace content | 252 } // namespace content |
| OLD | NEW |