| 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 accelerated_filters_enabled(false), | 69 accelerated_filters_enabled(false), |
| 70 deferred_filters_enabled(false), | 70 deferred_filters_enabled(false), |
| 71 container_culling_enabled(false), | 71 container_culling_enabled(false), |
| 72 gesture_tap_highlight_enabled(false), | 72 gesture_tap_highlight_enabled(false), |
| 73 allow_displaying_insecure_content(true), | 73 allow_displaying_insecure_content(true), |
| 74 allow_running_insecure_content(false), | 74 allow_running_insecure_content(false), |
| 75 password_echo_enabled(false), | 75 password_echo_enabled(false), |
| 76 should_print_backgrounds(false), | 76 should_print_backgrounds(false), |
| 77 should_clear_document_background(true), | 77 should_clear_document_background(true), |
| 78 enable_scroll_animator(false), | 78 enable_scroll_animator(false), |
| 79 lazy_layout_enabled(false), | |
| 80 region_based_columns_enabled(false), | 79 region_based_columns_enabled(false), |
| 81 touch_enabled(false), | 80 touch_enabled(false), |
| 82 device_supports_touch(false), | 81 device_supports_touch(false), |
| 83 device_supports_mouse(true), | 82 device_supports_mouse(true), |
| 84 touch_adjustment_enabled(true), | 83 touch_adjustment_enabled(true), |
| 85 pointer_events_max_touch_points(0), | 84 pointer_events_max_touch_points(0), |
| 86 sync_xhr_in_documents_enabled(true), | 85 sync_xhr_in_documents_enabled(true), |
| 87 deferred_image_decoding_enabled(false), | 86 deferred_image_decoding_enabled(false), |
| 88 should_respect_image_orientation(false), | 87 should_respect_image_orientation(false), |
| 89 number_of_cpu_cores(1), | 88 number_of_cpu_cores(1), |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 COMPILE_ASSERT_MATCHING_ENUMS( | 168 COMPILE_ASSERT_MATCHING_ENUMS( |
| 170 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 169 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 171 COMPILE_ASSERT_MATCHING_ENUMS( | 170 COMPILE_ASSERT_MATCHING_ENUMS( |
| 172 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 171 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 173 COMPILE_ASSERT_MATCHING_ENUMS( | 172 COMPILE_ASSERT_MATCHING_ENUMS( |
| 174 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 173 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 175 COMPILE_ASSERT_MATCHING_ENUMS( | 174 COMPILE_ASSERT_MATCHING_ENUMS( |
| 176 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 175 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
| 177 | 176 |
| 178 } // namespace webkit_glue | 177 } // namespace webkit_glue |
| OLD | NEW |