| 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/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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 main_frame_resizes_are_orientation_changes(false), | 180 main_frame_resizes_are_orientation_changes(false), |
| 181 initialize_at_minimum_page_scale(true), | 181 initialize_at_minimum_page_scale(true), |
| 182 #if defined(OS_MACOSX) | 182 #if defined(OS_MACOSX) |
| 183 smart_insert_delete_enabled(true), | 183 smart_insert_delete_enabled(true), |
| 184 #else | 184 #else |
| 185 smart_insert_delete_enabled(false), | 185 smart_insert_delete_enabled(false), |
| 186 #endif | 186 #endif |
| 187 spatial_navigation_enabled(false), | 187 spatial_navigation_enabled(false), |
| 188 pinch_virtual_viewport_enabled(false), | 188 pinch_virtual_viewport_enabled(false), |
| 189 pinch_overlay_scrollbar_thickness(0), | 189 pinch_overlay_scrollbar_thickness(0), |
| 190 rubber_banding_on_compositor_thread(false), | |
| 191 use_solid_color_scrollbars(false), | 190 use_solid_color_scrollbars(false), |
| 192 navigate_on_drag_drop(true), | 191 navigate_on_drag_drop(true), |
| 193 v8_cache_options(V8_CACHE_OPTIONS_DEFAULT), | 192 v8_cache_options(V8_CACHE_OPTIONS_DEFAULT), |
| 194 slimming_paint_enabled(false), | 193 slimming_paint_enabled(false), |
| 195 cookie_enabled(true), | 194 cookie_enabled(true), |
| 196 pepper_accelerated_video_decode_enabled(false), | 195 pepper_accelerated_video_decode_enabled(false), |
| 197 animation_policy(IMAGE_ANIMATION_POLICY_ALLOWED), | 196 animation_policy(IMAGE_ANIMATION_POLICY_ALLOWED), |
| 198 #if defined(OS_ANDROID) | 197 #if defined(OS_ANDROID) |
| 199 text_autosizing_enabled(true), | 198 text_autosizing_enabled(true), |
| 200 font_scale_factor(1.0f), | 199 font_scale_factor(1.0f), |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); | 231 cursive_font_family_map[kCommonScript] = base::ASCIIToUTF16("Script"); |
| 233 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); | 232 fantasy_font_family_map[kCommonScript] = base::ASCIIToUTF16("Impact"); |
| 234 pictograph_font_family_map[kCommonScript] = | 233 pictograph_font_family_map[kCommonScript] = |
| 235 base::ASCIIToUTF16("Times New Roman"); | 234 base::ASCIIToUTF16("Times New Roman"); |
| 236 } | 235 } |
| 237 | 236 |
| 238 WebPreferences::~WebPreferences() { | 237 WebPreferences::~WebPreferences() { |
| 239 } | 238 } |
| 240 | 239 |
| 241 } // namespace content | 240 } // namespace content |
| OLD | NEW |