OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 namespace prefs { | 7 namespace prefs { |
8 | 8 |
9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
10 // These are attached to the user profile | 10 // These are attached to the user profile |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
268 | 268 |
269 // Time when instant was last enabled. | 269 // Time when instant was last enabled. |
270 const char kInstantEnabledTime[] = "instant.enabled_time"; | 270 const char kInstantEnabledTime[] = "instant.enabled_time"; |
271 | 271 |
272 // Used to maintain instant promo keys. See PromoCounter for details of subkeys | 272 // Used to maintain instant promo keys. See PromoCounter for details of subkeys |
273 // that are used. | 273 // that are used. |
274 const char kInstantPromo[] = "instant.promo"; | 274 const char kInstantPromo[] = "instant.promo"; |
275 | 275 |
276 // Used to migrate preferences from local state to user preferences to | 276 // Used to migrate preferences from local state to user preferences to |
277 // enable multiple profiles. | 277 // enable multiple profiles. |
278 // Holds possible values: | 278 // BITMASK with possible values (see browser_prefs.cc for enum): |
279 // 0: no preferences migrated yet. | 279 // 0: No preferences migrated. |
280 // 1: dns prefetching preferences stored in user preferences. | 280 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList |
| 281 // 2: Browser window preferences migrated: kDevToolsSplitLocation and |
| 282 // kBrowserWindowPlacement |
281 const char kMultipleProfilePrefMigration[] = | 283 const char kMultipleProfilePrefMigration[] = |
282 "profile.multiple_profile_prefs_version"; | 284 "local_state.multiple_profile_prefs_version"; |
283 | 285 |
284 #if defined(USE_NSS) || defined(USE_OPENSSL) | 286 #if defined(USE_NSS) || defined(USE_OPENSSL) |
285 // Prefs for SSLConfigServicePref. Currently, these are only present on | 287 // Prefs for SSLConfigServicePref. Currently, these are only present on |
286 // and used by NSS/OpenSSL using OSes. | 288 // and used by NSS/OpenSSL using OSes. |
287 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 289 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
288 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 290 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
289 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 291 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
290 #endif | 292 #endif |
291 | 293 |
292 #if defined(OS_CHROMEOS) | 294 #if defined(OS_CHROMEOS) |
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1231 const char kManagedDefaultPluginsSetting[] = | 1233 const char kManagedDefaultPluginsSetting[] = |
1232 "profile.managed_default_content_settings.plugins"; | 1234 "profile.managed_default_content_settings.plugins"; |
1233 const char kManagedDefaultPopupsSetting[] = | 1235 const char kManagedDefaultPopupsSetting[] = |
1234 "profile.managed_default_content_settings.popups"; | 1236 "profile.managed_default_content_settings.popups"; |
1235 | 1237 |
1236 // Dictionary for storing the set of known background pages (keys are extension | 1238 // Dictionary for storing the set of known background pages (keys are extension |
1237 // IDs of background page owners, value is a boolean that is true if the user | 1239 // IDs of background page owners, value is a boolean that is true if the user |
1238 // needs to acknowledge this page. | 1240 // needs to acknowledge this page. |
1239 const char kKnownBackgroundPages[] = "background_pages.known"; | 1241 const char kKnownBackgroundPages[] = "background_pages.known"; |
1240 } // namespace prefs | 1242 } // namespace prefs |
OLD | NEW |