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 26 matching lines...) Expand all Loading... |
37 xslt_enabled(true), | 37 xslt_enabled(true), |
38 xss_auditor_enabled(true), | 38 xss_auditor_enabled(true), |
39 dns_prefetching_enabled(true), | 39 dns_prefetching_enabled(true), |
40 local_storage_enabled(false), | 40 local_storage_enabled(false), |
41 databases_enabled(false), | 41 databases_enabled(false), |
42 application_cache_enabled(false), | 42 application_cache_enabled(false), |
43 tabs_to_links(true), | 43 tabs_to_links(true), |
44 caret_browsing_enabled(false), | 44 caret_browsing_enabled(false), |
45 hyperlink_auditing_enabled(true), | 45 hyperlink_auditing_enabled(true), |
46 is_online(true), | 46 is_online(true), |
| 47 connection_type(net::NetworkChangeNotifier::CONNECTION_NONE), |
47 allow_universal_access_from_file_urls(false), | 48 allow_universal_access_from_file_urls(false), |
48 allow_file_access_from_file_urls(false), | 49 allow_file_access_from_file_urls(false), |
49 webaudio_enabled(false), | 50 webaudio_enabled(false), |
50 experimental_webgl_enabled(false), | 51 experimental_webgl_enabled(false), |
51 pepper_3d_enabled(false), | 52 pepper_3d_enabled(false), |
52 flash_3d_enabled(true), | 53 flash_3d_enabled(true), |
53 flash_stage3d_enabled(false), | 54 flash_stage3d_enabled(false), |
54 flash_stage3d_baseline_enabled(false), | 55 flash_stage3d_baseline_enabled(false), |
55 gl_multisampling_enabled(true), | 56 gl_multisampling_enabled(true), |
56 privileged_webgl_extensions_enabled(false), | 57 privileged_webgl_extensions_enabled(false), |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 COMPILE_ASSERT_MATCHING_ENUMS( | 169 COMPILE_ASSERT_MATCHING_ENUMS( |
169 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); | 170 webkit_glue::EDITING_BEHAVIOR_MAC, WebSettings::EditingBehaviorMac); |
170 COMPILE_ASSERT_MATCHING_ENUMS( | 171 COMPILE_ASSERT_MATCHING_ENUMS( |
171 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); | 172 webkit_glue::EDITING_BEHAVIOR_WIN, WebSettings::EditingBehaviorWin); |
172 COMPILE_ASSERT_MATCHING_ENUMS( | 173 COMPILE_ASSERT_MATCHING_ENUMS( |
173 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); | 174 webkit_glue::EDITING_BEHAVIOR_UNIX, WebSettings::EditingBehaviorUnix); |
174 COMPILE_ASSERT_MATCHING_ENUMS( | 175 COMPILE_ASSERT_MATCHING_ENUMS( |
175 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); | 176 webkit_glue::EDITING_BEHAVIOR_ANDROID, WebSettings::EditingBehaviorAndroid); |
176 | 177 |
177 } // namespace webkit_glue | 178 } // namespace webkit_glue |
OLD | NEW |