| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 accelerated_2d_canvas_msaa_sample_count(0), | 74 accelerated_2d_canvas_msaa_sample_count(0), |
| 75 accelerated_filters_enabled(false), | 75 accelerated_filters_enabled(false), |
| 76 gesture_tap_highlight_enabled(false), | 76 gesture_tap_highlight_enabled(false), |
| 77 accelerated_compositing_for_plugins_enabled(false), | 77 accelerated_compositing_for_plugins_enabled(false), |
| 78 memory_info_enabled(false), | 78 memory_info_enabled(false), |
| 79 fullscreen_enabled(false), | 79 fullscreen_enabled(false), |
| 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 should_clear_document_background(true), |
| 84 enable_scroll_animator(false), | 85 enable_scroll_animator(false), |
| 85 visual_word_movement_enabled(false), | 86 visual_word_movement_enabled(false), |
| 86 lazy_layout_enabled(false), | 87 lazy_layout_enabled(false), |
| 87 region_based_columns_enabled(false), | 88 region_based_columns_enabled(false), |
| 88 touch_enabled(false), | 89 touch_enabled(false), |
| 89 device_supports_touch(false), | 90 device_supports_touch(false), |
| 90 device_supports_mouse(true), | 91 device_supports_mouse(true), |
| 91 touch_adjustment_enabled(true), | 92 touch_adjustment_enabled(true), |
| 92 pointer_events_max_touch_points(0), | 93 pointer_events_max_touch_points(0), |
| 93 fixed_position_creates_stacking_context(false), | 94 fixed_position_creates_stacking_context(false), |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 COMPILE_ASSERT_MATCHING_ENUMS( | 178 COMPILE_ASSERT_MATCHING_ENUMS( |
| 178 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 179 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 179 COMPILE_ASSERT_MATCHING_ENUMS( | 180 COMPILE_ASSERT_MATCHING_ENUMS( |
| 180 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 181 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 181 COMPILE_ASSERT_MATCHING_ENUMS( | 182 COMPILE_ASSERT_MATCHING_ENUMS( |
| 182 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 183 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 183 COMPILE_ASSERT_MATCHING_ENUMS( | 184 COMPILE_ASSERT_MATCHING_ENUMS( |
| 184 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 185 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
| 185 | 186 |
| 186 } // namespace webkit_glue | 187 } // namespace webkit_glue |
| OLD | NEW |