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 asynchronous_spell_checking_enabled(true), | 65 asynchronous_spell_checking_enabled(true), |
66 unified_textchecker_enabled(false), | 66 unified_textchecker_enabled(false), |
67 accelerated_compositing_enabled(false), | 67 accelerated_compositing_enabled(false), |
68 force_compositing_mode(false), | 68 force_compositing_mode(false), |
69 accelerated_compositing_for_3d_transforms_enabled(false), | 69 accelerated_compositing_for_3d_transforms_enabled(false), |
70 accelerated_compositing_for_animation_enabled(false), | 70 accelerated_compositing_for_animation_enabled(false), |
71 accelerated_compositing_for_video_enabled(false), | 71 accelerated_compositing_for_video_enabled(false), |
72 accelerated_2d_canvas_enabled(false), | 72 accelerated_2d_canvas_enabled(false), |
73 minimum_accelerated_2d_canvas_size(257 * 256), | 73 minimum_accelerated_2d_canvas_size(257 * 256), |
74 antialiased_2d_canvas_disabled(false), | 74 antialiased_2d_canvas_disabled(false), |
| 75 accelerated_2d_canvas_msaa_sample_count(0), |
75 accelerated_filters_enabled(false), | 76 accelerated_filters_enabled(false), |
76 gesture_tap_highlight_enabled(false), | 77 gesture_tap_highlight_enabled(false), |
77 accelerated_compositing_for_plugins_enabled(false), | 78 accelerated_compositing_for_plugins_enabled(false), |
78 memory_info_enabled(false), | 79 memory_info_enabled(false), |
79 fullscreen_enabled(false), | 80 fullscreen_enabled(false), |
80 allow_displaying_insecure_content(true), | 81 allow_displaying_insecure_content(true), |
81 allow_running_insecure_content(false), | 82 allow_running_insecure_content(false), |
82 password_echo_enabled(false), | 83 password_echo_enabled(false), |
83 should_print_backgrounds(false), | 84 should_print_backgrounds(false), |
84 enable_scroll_animator(false), | 85 enable_scroll_animator(false), |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 COMPILE_ASSERT_MATCHING_ENUMS( | 172 COMPILE_ASSERT_MATCHING_ENUMS( |
172 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 173 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
173 COMPILE_ASSERT_MATCHING_ENUMS( | 174 COMPILE_ASSERT_MATCHING_ENUMS( |
174 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 175 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
175 COMPILE_ASSERT_MATCHING_ENUMS( | 176 COMPILE_ASSERT_MATCHING_ENUMS( |
176 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 177 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
177 COMPILE_ASSERT_MATCHING_ENUMS( | 178 COMPILE_ASSERT_MATCHING_ENUMS( |
178 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 179 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
179 | 180 |
180 } // namespace webkit_glue | 181 } // namespace webkit_glue |
OLD | NEW |