| 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/public/web/WebSettings.h" | 10 #include "third_party/WebKit/public/web/WebSettings.h" |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 gesture_tap_highlight_enabled(false), | 78 gesture_tap_highlight_enabled(false), |
| 79 accelerated_compositing_for_plugins_enabled(false), | 79 accelerated_compositing_for_plugins_enabled(false), |
| 80 memory_info_enabled(false), | 80 memory_info_enabled(false), |
| 81 fullscreen_enabled(false), | 81 fullscreen_enabled(false), |
| 82 allow_displaying_insecure_content(true), | 82 allow_displaying_insecure_content(true), |
| 83 allow_running_insecure_content(false), | 83 allow_running_insecure_content(false), |
| 84 password_echo_enabled(false), | 84 password_echo_enabled(false), |
| 85 should_print_backgrounds(false), | 85 should_print_backgrounds(false), |
| 86 should_clear_document_background(true), | 86 should_clear_document_background(true), |
| 87 enable_scroll_animator(false), | 87 enable_scroll_animator(false), |
| 88 visual_word_movement_enabled(false), | |
| 89 lazy_layout_enabled(false), | 88 lazy_layout_enabled(false), |
| 90 region_based_columns_enabled(false), | 89 region_based_columns_enabled(false), |
| 91 touch_enabled(false), | 90 touch_enabled(false), |
| 92 device_supports_touch(false), | 91 device_supports_touch(false), |
| 93 device_supports_mouse(true), | 92 device_supports_mouse(true), |
| 94 touch_adjustment_enabled(true), | 93 touch_adjustment_enabled(true), |
| 95 pointer_events_max_touch_points(0), | 94 pointer_events_max_touch_points(0), |
| 96 fixed_position_creates_stacking_context(false), | 95 fixed_position_creates_stacking_context(false), |
| 97 sync_xhr_in_documents_enabled(true), | 96 sync_xhr_in_documents_enabled(true), |
| 98 deferred_image_decoding_enabled(false), | 97 deferred_image_decoding_enabled(false), |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 COMPILE_ASSERT_MATCHING_ENUMS( | 179 COMPILE_ASSERT_MATCHING_ENUMS( |
| 181 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 180 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 182 COMPILE_ASSERT_MATCHING_ENUMS( | 181 COMPILE_ASSERT_MATCHING_ENUMS( |
| 183 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 182 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 184 COMPILE_ASSERT_MATCHING_ENUMS( | 183 COMPILE_ASSERT_MATCHING_ENUMS( |
| 185 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 184 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 186 COMPILE_ASSERT_MATCHING_ENUMS( | 185 COMPILE_ASSERT_MATCHING_ENUMS( |
| 187 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 186 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
| 188 | 187 |
| 189 } // namespace webkit_glue | 188 } // namespace webkit_glue |
| OLD | NEW |