| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 6 #define CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 bool tabs_to_links; | 105 bool tabs_to_links; |
| 106 bool caret_browsing_enabled; | 106 bool caret_browsing_enabled; |
| 107 bool hyperlink_auditing_enabled; | 107 bool hyperlink_auditing_enabled; |
| 108 bool allow_universal_access_from_file_urls; | 108 bool allow_universal_access_from_file_urls; |
| 109 bool allow_file_access_from_file_urls; | 109 bool allow_file_access_from_file_urls; |
| 110 bool experimental_webgl_enabled; | 110 bool experimental_webgl_enabled; |
| 111 bool pepper_3d_enabled; | 111 bool pepper_3d_enabled; |
| 112 bool flash_3d_enabled; | 112 bool flash_3d_enabled; |
| 113 bool flash_stage3d_enabled; | 113 bool flash_stage3d_enabled; |
| 114 bool flash_stage3d_baseline_enabled; | 114 bool flash_stage3d_baseline_enabled; |
| 115 bool gl_multisampling_enabled; | |
| 116 bool privileged_webgl_extensions_enabled; | 115 bool privileged_webgl_extensions_enabled; |
| 117 bool webgl_errors_to_console_enabled; | 116 bool webgl_errors_to_console_enabled; |
| 118 bool mock_scrollbars_enabled; | 117 bool mock_scrollbars_enabled; |
| 119 bool unified_textchecker_enabled; | 118 bool unified_textchecker_enabled; |
| 120 bool accelerated_2d_canvas_enabled; | 119 bool accelerated_2d_canvas_enabled; |
| 121 int minimum_accelerated_2d_canvas_size; | 120 int minimum_accelerated_2d_canvas_size; |
| 122 bool disable_2d_canvas_copy_on_write; | 121 bool disable_2d_canvas_copy_on_write; |
| 123 bool antialiased_2d_canvas_disabled; | 122 bool antialiased_2d_canvas_disabled; |
| 124 bool antialiased_clips_2d_canvas_enabled; | 123 bool antialiased_clips_2d_canvas_enabled; |
| 125 int accelerated_2d_canvas_msaa_sample_count; | 124 int accelerated_2d_canvas_msaa_sample_count; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 // chrome, except for the cases where it would require lots of extra work for | 231 // chrome, except for the cases where it would require lots of extra work for |
| 233 // the embedder to use the same default value. | 232 // the embedder to use the same default value. |
| 234 WebPreferences(); | 233 WebPreferences(); |
| 235 WebPreferences(const WebPreferences& other); | 234 WebPreferences(const WebPreferences& other); |
| 236 ~WebPreferences(); | 235 ~WebPreferences(); |
| 237 }; | 236 }; |
| 238 | 237 |
| 239 } // namespace content | 238 } // namespace content |
| 240 | 239 |
| 241 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ | 240 #endif // CONTENT_PUBLIC_COMMON_WEB_PREFERENCES_H_ |
| OLD | NEW |