| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/common/webpreferences.h" | 5 #include "webkit/common/webpreferences.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/Source/WebKit/chromium/public/WebKit.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 allow_displaying_insecure_content(true), | 80 allow_displaying_insecure_content(true), |
| 81 allow_running_insecure_content(false), | 81 allow_running_insecure_content(false), |
| 82 password_echo_enabled(false), | 82 password_echo_enabled(false), |
| 83 should_print_backgrounds(false), | 83 should_print_backgrounds(false), |
| 84 enable_scroll_animator(false), | 84 enable_scroll_animator(false), |
| 85 visual_word_movement_enabled(false), | 85 visual_word_movement_enabled(false), |
| 86 css_sticky_position_enabled(false), | 86 css_sticky_position_enabled(false), |
| 87 css_shaders_enabled(false), | 87 css_shaders_enabled(false), |
| 88 css_grid_layout_enabled(false), | 88 css_grid_layout_enabled(false), |
| 89 lazy_layout_enabled(false), | 89 lazy_layout_enabled(false), |
| 90 region_based_columns_enabled(false), |
| 90 touch_enabled(false), | 91 touch_enabled(false), |
| 91 device_supports_touch(false), | 92 device_supports_touch(false), |
| 92 device_supports_mouse(true), | 93 device_supports_mouse(true), |
| 93 touch_adjustment_enabled(true), | 94 touch_adjustment_enabled(true), |
| 94 fixed_position_creates_stacking_context(false), | 95 fixed_position_creates_stacking_context(false), |
| 95 sync_xhr_in_documents_enabled(true), | 96 sync_xhr_in_documents_enabled(true), |
| 96 deferred_image_decoding_enabled(false), | 97 deferred_image_decoding_enabled(false), |
| 97 should_respect_image_orientation(false), | 98 should_respect_image_orientation(false), |
| 98 number_of_cpu_cores(1), | 99 number_of_cpu_cores(1), |
| 99 #if defined(OS_MACOSX) | 100 #if defined(OS_MACOSX) |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 COMPILE_ASSERT_MATCHING_ENUMS( | 163 COMPILE_ASSERT_MATCHING_ENUMS( |
| 163 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 164 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 164 COMPILE_ASSERT_MATCHING_ENUMS( | 165 COMPILE_ASSERT_MATCHING_ENUMS( |
| 165 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 166 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 166 COMPILE_ASSERT_MATCHING_ENUMS( | 167 COMPILE_ASSERT_MATCHING_ENUMS( |
| 167 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 168 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 168 COMPILE_ASSERT_MATCHING_ENUMS( | 169 COMPILE_ASSERT_MATCHING_ENUMS( |
| 169 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 170 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
| 170 | 171 |
| 171 } // namespace webkit_glue | 172 } // namespace webkit_glue |
| OLD | NEW |