| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/glue/webpreferences.h" | 5 #include "webkit/glue/webpreferences.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "base/utf_string_conversions.h" | 9 #include "base/utf_string_conversions.h" |
| 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" | 10 #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 gl_multisampling_enabled(true), | 81 gl_multisampling_enabled(true), |
| 82 privileged_webgl_extensions_enabled(false), | 82 privileged_webgl_extensions_enabled(false), |
| 83 webgl_errors_to_console_enabled(true), | 83 webgl_errors_to_console_enabled(true), |
| 84 show_composited_layer_borders(false), | 84 show_composited_layer_borders(false), |
| 85 show_composited_layer_tree(false), | 85 show_composited_layer_tree(false), |
| 86 show_fps_counter(false), | 86 show_fps_counter(false), |
| 87 accelerated_compositing_for_overflow_scroll_enabled(false), | 87 accelerated_compositing_for_overflow_scroll_enabled(false), |
| 88 accelerated_compositing_for_scrollable_frames_enabled(false), | 88 accelerated_compositing_for_scrollable_frames_enabled(false), |
| 89 composited_scrolling_for_frames_enabled(false), | 89 composited_scrolling_for_frames_enabled(false), |
| 90 mock_scrollbars_enabled(false), | 90 mock_scrollbars_enabled(false), |
| 91 threaded_html_parser(true), | 91 threaded_html_parser(false), |
| 92 show_paint_rects(false), | 92 show_paint_rects(false), |
| 93 render_vsync_enabled(true), | 93 render_vsync_enabled(true), |
| 94 asynchronous_spell_checking_enabled(true), | 94 asynchronous_spell_checking_enabled(true), |
| 95 unified_textchecker_enabled(false), | 95 unified_textchecker_enabled(false), |
| 96 accelerated_compositing_enabled(false), | 96 accelerated_compositing_enabled(false), |
| 97 force_compositing_mode(false), | 97 force_compositing_mode(false), |
| 98 accelerated_compositing_for_3d_transforms_enabled(false), | 98 accelerated_compositing_for_3d_transforms_enabled(false), |
| 99 accelerated_compositing_for_animation_enabled(false), | 99 accelerated_compositing_for_animation_enabled(false), |
| 100 accelerated_compositing_for_video_enabled(false), | 100 accelerated_compositing_for_video_enabled(false), |
| 101 accelerated_2d_canvas_enabled(false), | 101 accelerated_2d_canvas_enabled(false), |
| (...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 514 WebPreferences::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 514 WebPreferences::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
| 515 COMPILE_ASSERT_MATCHING_ENUMS( | 515 COMPILE_ASSERT_MATCHING_ENUMS( |
| 516 WebPreferences::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 516 WebPreferences::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
| 517 COMPILE_ASSERT_MATCHING_ENUMS( | 517 COMPILE_ASSERT_MATCHING_ENUMS( |
| 518 WebPreferences::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 518 WebPreferences::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
| 519 COMPILE_ASSERT_MATCHING_ENUMS( | 519 COMPILE_ASSERT_MATCHING_ENUMS( |
| 520 WebPreferences::EDITING_BEHAVIOR_ANDROID, | 520 WebPreferences::EDITING_BEHAVIOR_ANDROID, |
| 521 WebSettings::EditingBehaviorAndroid); | 521 WebSettings::EditingBehaviorAndroid); |
| 522 | 522 |
| 523 } // namespace webkit_glue | 523 } // namespace webkit_glue |
| OLD | NEW |