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 1121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1132 | 1132 |
1133 // The default video capture device used by the Media content setting. | 1133 // The default video capture device used by the Media content setting. |
1134 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; | 1134 const char kDefaultVideoCaptureDevice[] = "media.default_video_capture_Device"; |
1135 | 1135 |
1136 // The salt used for creating random MediaSource IDs. | 1136 // The salt used for creating random MediaSource IDs. |
1137 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; | 1137 const char kMediaDeviceIdSalt[] = "media.device_id_salt"; |
1138 | 1138 |
1139 // Preference to disable 3D APIs (WebGL, Pepper 3D). | 1139 // Preference to disable 3D APIs (WebGL, Pepper 3D). |
1140 const char kDisable3DAPIs[] = "disable_3d_apis"; | 1140 const char kDisable3DAPIs[] = "disable_3d_apis"; |
1141 | 1141 |
| 1142 const char kEnableDeprecatedWebPlatformFeatures[] = |
| 1143 "enable_deprecated_web_platform_features"; |
| 1144 |
1142 // Whether to enable hyperlink auditing ("<a ping>"). | 1145 // Whether to enable hyperlink auditing ("<a ping>"). |
1143 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; | 1146 const char kEnableHyperlinkAuditing[] = "enable_a_ping"; |
1144 | 1147 |
1145 // Whether to enable sending referrers. | 1148 // Whether to enable sending referrers. |
1146 const char kEnableReferrers[] = "enable_referrers"; | 1149 const char kEnableReferrers[] = "enable_referrers"; |
1147 | 1150 |
1148 // Whether to send the DNT header. | 1151 // Whether to send the DNT header. |
1149 const char kEnableDoNotTrack[] = "enable_do_not_track"; | 1152 const char kEnableDoNotTrack[] = "enable_do_not_track"; |
1150 | 1153 |
1151 // GL_VENDOR string. | 1154 // GL_VENDOR string. |
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2390 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2393 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
2391 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2394 // given by the PartnerBookmarksProvider and either the user-visible renamed |
2392 // title or an empty string if the bookmark node was removed. | 2395 // title or an empty string if the bookmark node was removed. |
2393 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2396 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2394 #endif | 2397 #endif |
2395 | 2398 |
2396 // Whether DNS Quick Check is disabled in proxy resolution. | 2399 // Whether DNS Quick Check is disabled in proxy resolution. |
2397 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2400 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2398 | 2401 |
2399 } // namespace prefs | 2402 } // namespace prefs |
OLD | NEW |