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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 gl_multisampling_enabled(true), | 55 gl_multisampling_enabled(true), |
56 privileged_webgl_extensions_enabled(false), | 56 privileged_webgl_extensions_enabled(false), |
57 webgl_errors_to_console_enabled(true), | 57 webgl_errors_to_console_enabled(true), |
58 mock_scrollbars_enabled(false), | 58 mock_scrollbars_enabled(false), |
59 layer_squashing_enabled(true), | 59 layer_squashing_enabled(true), |
60 threaded_html_parser(true), | 60 threaded_html_parser(true), |
61 show_paint_rects(false), | 61 show_paint_rects(false), |
62 asynchronous_spell_checking_enabled(true), | 62 asynchronous_spell_checking_enabled(true), |
63 unified_textchecker_enabled(false), | 63 unified_textchecker_enabled(false), |
64 force_compositing_mode(true), | 64 force_compositing_mode(true), |
65 accelerated_compositing_for_video_enabled(false), | 65 accelerated_compositing_for_video_enabled(true), |
66 accelerated_2d_canvas_enabled(false), | 66 accelerated_2d_canvas_enabled(false), |
67 minimum_accelerated_2d_canvas_size(257 * 256), | 67 minimum_accelerated_2d_canvas_size(257 * 256), |
68 antialiased_2d_canvas_disabled(false), | 68 antialiased_2d_canvas_disabled(false), |
69 accelerated_2d_canvas_msaa_sample_count(0), | 69 accelerated_2d_canvas_msaa_sample_count(0), |
70 accelerated_filters_enabled(false), | 70 accelerated_filters_enabled(false), |
71 deferred_filters_enabled(false), | 71 deferred_filters_enabled(false), |
72 container_culling_enabled(false), | 72 container_culling_enabled(false), |
73 gesture_tap_highlight_enabled(false), | 73 gesture_tap_highlight_enabled(false), |
74 allow_displaying_insecure_content(true), | 74 allow_displaying_insecure_content(true), |
75 allow_running_insecure_content(false), | 75 allow_running_insecure_content(false), |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 COMPILE_ASSERT_MATCHING_ENUMS( | 171 COMPILE_ASSERT_MATCHING_ENUMS( |
172 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 172 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
173 COMPILE_ASSERT_MATCHING_ENUMS( | 173 COMPILE_ASSERT_MATCHING_ENUMS( |
174 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 174 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
175 COMPILE_ASSERT_MATCHING_ENUMS( | 175 COMPILE_ASSERT_MATCHING_ENUMS( |
176 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 176 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
177 COMPILE_ASSERT_MATCHING_ENUMS( | 177 COMPILE_ASSERT_MATCHING_ENUMS( |
178 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 178 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
179 | 179 |
180 } // namespace webkit_glue | 180 } // namespace webkit_glue |
OLD | NEW |