| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 force_compositing_mode(false), | 65 force_compositing_mode(false), |
| 66 accelerated_compositing_for_3d_transforms_enabled(false), | 66 accelerated_compositing_for_3d_transforms_enabled(false), |
| 67 accelerated_compositing_for_animation_enabled(false), | 67 accelerated_compositing_for_animation_enabled(false), |
| 68 accelerated_compositing_for_video_enabled(false), | 68 accelerated_compositing_for_video_enabled(false), |
| 69 accelerated_2d_canvas_enabled(false), | 69 accelerated_2d_canvas_enabled(false), |
| 70 minimum_accelerated_2d_canvas_size(257 * 256), | 70 minimum_accelerated_2d_canvas_size(257 * 256), |
| 71 antialiased_2d_canvas_disabled(false), | 71 antialiased_2d_canvas_disabled(false), |
| 72 accelerated_2d_canvas_msaa_sample_count(0), | 72 accelerated_2d_canvas_msaa_sample_count(0), |
| 73 accelerated_filters_enabled(false), | 73 accelerated_filters_enabled(false), |
| 74 deferred_filters_enabled(false), | 74 deferred_filters_enabled(false), |
| 75 container_culling_enabled(false), |
| 75 gesture_tap_highlight_enabled(false), | 76 gesture_tap_highlight_enabled(false), |
| 76 accelerated_compositing_for_plugins_enabled(false), | 77 accelerated_compositing_for_plugins_enabled(false), |
| 77 allow_displaying_insecure_content(true), | 78 allow_displaying_insecure_content(true), |
| 78 allow_running_insecure_content(false), | 79 allow_running_insecure_content(false), |
| 79 password_echo_enabled(false), | 80 password_echo_enabled(false), |
| 80 should_print_backgrounds(false), | 81 should_print_backgrounds(false), |
| 81 should_clear_document_background(true), | 82 should_clear_document_background(true), |
| 82 enable_scroll_animator(false), | 83 enable_scroll_animator(false), |
| 83 visual_word_movement_enabled(false), | 84 visual_word_movement_enabled(false), |
| 84 lazy_layout_enabled(false), | 85 lazy_layout_enabled(false), |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 COMPILE_ASSERT_MATCHING_ENUMS( | 177 COMPILE_ASSERT_MATCHING_ENUMS( |
| 177 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 178 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 178 COMPILE_ASSERT_MATCHING_ENUMS( | 179 COMPILE_ASSERT_MATCHING_ENUMS( |
| 179 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 180 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 180 COMPILE_ASSERT_MATCHING_ENUMS( | 181 COMPILE_ASSERT_MATCHING_ENUMS( |
| 181 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 182 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 182 COMPILE_ASSERT_MATCHING_ENUMS( | 183 COMPILE_ASSERT_MATCHING_ENUMS( |
| 183 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 184 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
| 184 | 185 |
| 185 } // namespace webkit_glue | 186 } // namespace webkit_glue |
| OLD | NEW |