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 "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1128 | 1128 |
1129 // The default video capture device used by the Media content setting. | 1129 // The default video capture device used by the Media content setting. |
1130 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1130 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
1131 | 1131 |
1132 // The salt used for creating random MediaSource IDs. | 1132 // The salt used for creating random MediaSource IDs. |
1133 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; | 1133 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; |
1134 | 1134 |
1135 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 1135 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
1136 const char kDisable3DAPIs[] = "disable_3d_apis"; | 1136 const char kDisable3DAPIs[] = "disable_3d_apis"; |
1137 | 1137 |
| 1138 const char kEnableDeprecatedWebPlatformFeatures[] = |
| 1139 "enable_deprecated_web_platform_features"; |
| 1140 |
1138 // Whether to enable hyperlink auditing ("<a ping>"). | 1141 // Whether to enable hyperlink auditing ("<a ping>"). |
1139 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 1142 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
1140 | 1143 |
1141 // Whether to enable sending referrers. | 1144 // Whether to enable sending referrers. |
1142 const char kEnableReferrers[] = "enable_referrers"; | 1145 const char kEnableReferrers[] = "enable_referrers"; |
1143 | 1146 |
1144 // Whether to send the DNT header. | 1147 // Whether to send the DNT header. |
1145 const char kEnableDoNotTrack[] = "enable_do_not_track"; | 1148 const char kEnableDoNotTrack[] = "enable_do_not_track"; |
1146 | 1149 |
1147 // GL_VENDOR string. | 1150 // GL_VENDOR string. |
(...skipping 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2380 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2383 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2381 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2384 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2382 // title or an empty string if the bookmark node was removed. | 2385 // title or an empty string if the bookmark node was removed. |
2383 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2386 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2384 #endif | 2387 #endif |
2385 | 2388 |
2386 // Whether DNS Quick Check is disabled in proxy resolution. | 2389 // Whether DNS Quick Check is disabled in proxy resolution. |
2387 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2390 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2388 | 2391 |
2389 } // namespace prefs | 2392 } // namespace prefs |
OLD | NEW |