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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 is_online(true), | 70 is_online(true), |
71 user_style_sheet_enabled(false), | 71 user_style_sheet_enabled(false), |
72 author_and_user_styles_enabled(true), | 72 author_and_user_styles_enabled(true), |
73 frame_flattening_enabled(false), | 73 frame_flattening_enabled(false), |
74 allow_universal_access_from_file_urls(false), | 74 allow_universal_access_from_file_urls(false), |
75 allow_file_access_from_file_urls(false), | 75 allow_file_access_from_file_urls(false), |
76 webaudio_enabled(false), | 76 webaudio_enabled(false), |
77 experimental_webgl_enabled(false), | 77 experimental_webgl_enabled(false), |
78 flash_3d_enabled(true), | 78 flash_3d_enabled(true), |
79 flash_stage3d_enabled(false), | 79 flash_stage3d_enabled(false), |
| 80 flash_stage3d_baseline_enabled(false), |
80 gl_multisampling_enabled(true), | 81 gl_multisampling_enabled(true), |
81 privileged_webgl_extensions_enabled(false), | 82 privileged_webgl_extensions_enabled(false), |
82 webgl_errors_to_console_enabled(true), | 83 webgl_errors_to_console_enabled(true), |
83 show_composited_layer_borders(false), | 84 show_composited_layer_borders(false), |
84 show_composited_layer_tree(false), | 85 show_composited_layer_tree(false), |
85 show_fps_counter(false), | 86 show_fps_counter(false), |
86 accelerated_compositing_for_overflow_scroll_enabled(false), | 87 accelerated_compositing_for_overflow_scroll_enabled(false), |
87 accelerated_compositing_for_scrollable_frames_enabled(false), | 88 accelerated_compositing_for_scrollable_frames_enabled(false), |
88 composited_scrolling_for_frames_enabled(false), | 89 composited_scrolling_for_frames_enabled(false), |
89 mock_scrollbars_enabled(false), | 90 mock_scrollbars_enabled(false), |
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
506 WebPreferences::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 507 WebPreferences::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
507 COMPILE_ASSERT_MATCHING_ENUMS( | 508 COMPILE_ASSERT_MATCHING_ENUMS( |
508 WebPreferences::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 509 WebPreferences::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
509 COMPILE_ASSERT_MATCHING_ENUMS( | 510 COMPILE_ASSERT_MATCHING_ENUMS( |
510 WebPreferences::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 511 WebPreferences::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
511 COMPILE_ASSERT_MATCHING_ENUMS( | 512 COMPILE_ASSERT_MATCHING_ENUMS( |
512 WebPreferences::EDITING_BEHAVIOR_ANDROID, | 513 WebPreferences::EDITING_BEHAVIOR_ANDROID, |
513 WebSettings::EditingBehaviorAndroid); | 514 WebSettings::EditingBehaviorAndroid); |
514 | 515 |
515 } // namespace webkit_glue | 516 } // namespace webkit_glue |
OLD | NEW |