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 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 | 245 |
246 // Time when instant was last enabled. | 246 // Time when instant was last enabled. |
247 const char kInstantEnabledTime[] = "instant.enabled_time"; | 247 const char kInstantEnabledTime[] = "instant.enabled_time"; |
248 | 248 |
249 // Used to maintain instant promo keys. See PromoCounter for details of subkeys | 249 // Used to maintain instant promo keys. See PromoCounter for details of subkeys |
250 // that are used. | 250 // that are used. |
251 const char kInstantPromo[] = "instant.promo"; | 251 const char kInstantPromo[] = "instant.promo"; |
252 | 252 |
253 // Used to migrate preferences from local state to user preferences to | 253 // Used to migrate preferences from local state to user preferences to |
254 // enable multiple profiles. | 254 // enable multiple profiles. |
255 // BITMASK with possible values (see browser_prefs.cc for enum): | 255 // Holds possible values: |
256 // 0: No preferences migrated. | 256 // 0: no preferences migrated yet. |
257 // 1: DNS preferences migrated: kDnsPrefetchingStartupList and HostReferralList | 257 // 1: dns prefetching preferences stored in user preferences. |
258 // 2: Browser window preferences migrated: kDevToolsSplitLocation and | |
259 // kBrowserWindowPlacement | |
260 const char kMultipleProfilePrefMigration[] = | 258 const char kMultipleProfilePrefMigration[] = |
261 "local_state.multiple_profile_prefs_version"; | 259 "profile.multiple_profile_prefs_version"; |
262 | 260 |
263 #if defined(USE_NSS) || defined(USE_OPENSSL) | 261 #if defined(USE_NSS) || defined(USE_OPENSSL) |
264 // Prefs for SSLConfigServicePref. Currently, these are only present on | 262 // Prefs for SSLConfigServicePref. Currently, these are only present on |
265 // and used by NSS/OpenSSL using OSes. | 263 // and used by NSS/OpenSSL using OSes. |
266 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; | 264 const char kCertRevocationCheckingEnabled[] = "ssl.rev_checking.enabled"; |
267 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; | 265 const char kSSL3Enabled[] = "ssl.ssl3.enabled"; |
268 const char kTLS1Enabled[] = "ssl.tls1.enabled"; | 266 const char kTLS1Enabled[] = "ssl.tls1.enabled"; |
269 #endif | 267 #endif |
270 | 268 |
271 #if defined(OS_CHROMEOS) | 269 #if defined(OS_CHROMEOS) |
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1191 const char kManagedDefaultPluginsSetting[] = | 1189 const char kManagedDefaultPluginsSetting[] = |
1192 "profile.managed_default_content_settings.plugins"; | 1190 "profile.managed_default_content_settings.plugins"; |
1193 const char kManagedDefaultPopupsSetting[] = | 1191 const char kManagedDefaultPopupsSetting[] = |
1194 "profile.managed_default_content_settings.popups"; | 1192 "profile.managed_default_content_settings.popups"; |
1195 | 1193 |
1196 // Dictionary for storing the set of known background pages (keys are extension | 1194 // Dictionary for storing the set of known background pages (keys are extension |
1197 // IDs of background page owners, value is a boolean that is true if the user | 1195 // IDs of background page owners, value is a boolean that is true if the user |
1198 // needs to acknowledge this page. | 1196 // needs to acknowledge this page. |
1199 const char kKnownBackgroundPages[] = "background_pages.known"; | 1197 const char kKnownBackgroundPages[] = "background_pages.known"; |
1200 } // namespace prefs | 1198 } // namespace prefs |
OLD | NEW |