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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 extern const char kHttpThrottlingMayExperiment[]; | 249 extern const char kHttpThrottlingMayExperiment[]; |
250 | 250 |
251 extern const char kDisable3DAPIs[]; | 251 extern const char kDisable3DAPIs[]; |
252 extern const char kEnableHyperlinkAuditing[]; | 252 extern const char kEnableHyperlinkAuditing[]; |
253 extern const char kEnableReferrers[]; | 253 extern const char kEnableReferrers[]; |
254 | 254 |
255 #if defined(OS_MACOSX) | 255 #if defined(OS_MACOSX) |
256 extern const char kPresentationModeEnabled[]; | 256 extern const char kPresentationModeEnabled[]; |
257 #endif | 257 #endif |
258 | 258 |
| 259 extern const char kImportBookmarks[]; |
| 260 extern const char kImportHistory[]; |
| 261 extern const char kImportHomepage[]; |
| 262 extern const char kImportSearchEngine[]; |
| 263 extern const char kImportSavedPasswords[]; |
| 264 |
259 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 265 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
260 extern const char kLocalProfileId[]; | 266 extern const char kLocalProfileId[]; |
261 extern const char kPasswordsUseLocalProfileId[]; | 267 extern const char kPasswordsUseLocalProfileId[]; |
262 #endif | 268 #endif |
263 | 269 |
264 // Local state prefs. Please add Profile prefs above instead. | 270 // Local state prefs. Please add Profile prefs above instead. |
265 extern const char kCertRevocationCheckingEnabled[]; | 271 extern const char kCertRevocationCheckingEnabled[]; |
266 extern const char kSSL3Enabled[]; | 272 extern const char kSSL3Enabled[]; |
267 extern const char kTLS1Enabled[]; | 273 extern const char kTLS1Enabled[]; |
268 extern const char kCipherSuiteBlacklist[]; | 274 extern const char kCipherSuiteBlacklist[]; |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 extern const char kManagedPopupsAllowedForUrls[]; | 513 extern const char kManagedPopupsAllowedForUrls[]; |
508 extern const char kManagedPopupsBlockedForUrls[]; | 514 extern const char kManagedPopupsBlockedForUrls[]; |
509 | 515 |
510 #if defined(OS_CHROMEOS) | 516 #if defined(OS_CHROMEOS) |
511 extern const char kSignedSettingsTempStorage[]; | 517 extern const char kSignedSettingsTempStorage[]; |
512 extern const char kHardwareKeyboardLayout[]; | 518 extern const char kHardwareKeyboardLayout[]; |
513 extern const char kCarrierDealPromoShown[]; | 519 extern const char kCarrierDealPromoShown[]; |
514 #endif | 520 #endif |
515 | 521 |
516 extern const char kClearPluginLSODataEnabled[]; | 522 extern const char kClearPluginLSODataEnabled[]; |
517 | |
518 extern const char kDiskCacheDir[]; | 523 extern const char kDiskCacheDir[]; |
519 | 524 |
520 extern const char kChromeOsReleaseChannel[]; | 525 extern const char kChromeOsReleaseChannel[]; |
521 | 526 |
522 extern const char kRegisteredBackgroundContents[]; | 527 extern const char kRegisteredBackgroundContents[]; |
523 | 528 |
524 extern const char kAuthSchemes[]; | 529 extern const char kAuthSchemes[]; |
525 extern const char kDisableAuthNegotiateCnameLookup[]; | 530 extern const char kDisableAuthNegotiateCnameLookup[]; |
526 extern const char kEnableAuthNegotiatePort[]; | 531 extern const char kEnableAuthNegotiatePort[]; |
527 extern const char kAuthServerWhitelist[]; | 532 extern const char kAuthServerWhitelist[]; |
528 extern const char kAuthNegotiateDelegateWhitelist[]; | 533 extern const char kAuthNegotiateDelegateWhitelist[]; |
529 extern const char kGSSAPILibraryName[]; | 534 extern const char kGSSAPILibraryName[]; |
530 extern const char kAllowCrossOriginAuthPrompt[]; | 535 extern const char kAllowCrossOriginAuthPrompt[]; |
531 | 536 |
532 extern const char kRegisteredProtocolHandlers[]; | 537 extern const char kRegisteredProtocolHandlers[]; |
533 extern const char kIgnoredProtocolHandlers[]; | 538 extern const char kIgnoredProtocolHandlers[]; |
534 extern const char kCustomHandlersEnabled[]; | 539 extern const char kCustomHandlersEnabled[]; |
535 | 540 |
536 extern const char kUserCreatedLoginItem[]; | 541 extern const char kUserCreatedLoginItem[]; |
537 extern const char kBackgroundModeEnabled[]; | 542 extern const char kBackgroundModeEnabled[]; |
538 | 543 |
539 extern const char kDevicePolicyRefreshRate[]; | 544 extern const char kDevicePolicyRefreshRate[]; |
540 extern const char kUserPolicyRefreshRate[]; | 545 extern const char kUserPolicyRefreshRate[]; |
541 | 546 |
542 } // namespace prefs | 547 } // namespace prefs |
543 | 548 |
544 #endif // CHROME_COMMON_PREF_NAMES_H_ | 549 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |