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 // 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 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 356 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
357 extern const char kLocalProfileId[]; | 357 extern const char kLocalProfileId[]; |
358 extern const char kPasswordsUseLocalProfileId[]; | 358 extern const char kPasswordsUseLocalProfileId[]; |
359 #endif | 359 #endif |
360 | 360 |
361 extern const char kProfileAvatarIndex[]; | 361 extern const char kProfileAvatarIndex[]; |
362 extern const char kProfileName[]; | 362 extern const char kProfileName[]; |
363 | 363 |
364 extern const char kInvertNotificationShown[]; | 364 extern const char kInvertNotificationShown[]; |
365 | 365 |
| 366 extern const char kPrintingEnabled[]; |
| 367 extern const char kPrintPreviewDisabled[]; |
| 368 |
366 // Local state prefs. Please add Profile prefs above instead. | 369 // Local state prefs. Please add Profile prefs above instead. |
367 extern const char kCertRevocationCheckingEnabled[]; | 370 extern const char kCertRevocationCheckingEnabled[]; |
368 extern const char kSSLVersionMin[]; | 371 extern const char kSSLVersionMin[]; |
369 extern const char kSSLVersionMax[]; | 372 extern const char kSSLVersionMax[]; |
370 extern const char kCipherSuiteBlacklist[]; | 373 extern const char kCipherSuiteBlacklist[]; |
371 extern const char kEnableOriginBoundCerts[]; | 374 extern const char kEnableOriginBoundCerts[]; |
372 extern const char kDisableSSLRecordSplitting[]; | 375 extern const char kDisableSSLRecordSplitting[]; |
373 extern const char kEnableMemoryInfo[]; | 376 extern const char kEnableMemoryInfo[]; |
374 | 377 |
375 extern const char kMetricsClientID[]; | 378 extern const char kMetricsClientID[]; |
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
605 | 608 |
606 extern const char kGeolocationAccessToken[]; | 609 extern const char kGeolocationAccessToken[]; |
607 extern const char kGeolocationDefaultContentSetting[]; | 610 extern const char kGeolocationDefaultContentSetting[]; |
608 extern const char kGeolocationContentSettings[]; | 611 extern const char kGeolocationContentSettings[]; |
609 #if defined(OS_ANDROID) | 612 #if defined(OS_ANDROID) |
610 extern const char kGeolocationEnabled[]; | 613 extern const char kGeolocationEnabled[]; |
611 #endif | 614 #endif |
612 | 615 |
613 extern const char kRemoteAccessHostFirewallTraversal[]; | 616 extern const char kRemoteAccessHostFirewallTraversal[]; |
614 | 617 |
615 extern const char kPrintingEnabled[]; | |
616 extern const char kPrintPreviewDisabled[]; | |
617 extern const char kPrintPreviewStickySettings[]; | 618 extern const char kPrintPreviewStickySettings[]; |
618 | |
619 extern const char kCloudPrintServiceURL[]; | 619 extern const char kCloudPrintServiceURL[]; |
620 extern const char kCloudPrintSigninURL[]; | 620 extern const char kCloudPrintSigninURL[]; |
621 extern const char kCloudPrintDialogWidth[]; | 621 extern const char kCloudPrintDialogWidth[]; |
622 extern const char kCloudPrintDialogHeight[]; | 622 extern const char kCloudPrintDialogHeight[]; |
623 extern const char kCloudPrintSigninDialogWidth[]; | 623 extern const char kCloudPrintSigninDialogWidth[]; |
624 extern const char kCloudPrintSigninDialogHeight[]; | 624 extern const char kCloudPrintSigninDialogHeight[]; |
625 extern const char kCloudPrintProxyEnabled[]; | 625 extern const char kCloudPrintProxyEnabled[]; |
626 extern const char kCloudPrintProxyId[]; | 626 extern const char kCloudPrintProxyId[]; |
627 extern const char kCloudPrintAuthToken[]; | 627 extern const char kCloudPrintAuthToken[]; |
628 extern const char kCloudPrintXMPPAuthToken[]; | 628 extern const char kCloudPrintXMPPAuthToken[]; |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 extern const char kNetworkProfileWarningsLeft[]; | 748 extern const char kNetworkProfileWarningsLeft[]; |
749 extern const char kNetworkProfileLastWarningTime[]; | 749 extern const char kNetworkProfileLastWarningTime[]; |
750 | 750 |
751 #if defined(OS_MACOSX) | 751 #if defined(OS_MACOSX) |
752 extern const char kMacLeopardObsoleteInfobarLastShown[]; | 752 extern const char kMacLeopardObsoleteInfobarLastShown[]; |
753 #endif // defined(OS_MACOSX) | 753 #endif // defined(OS_MACOSX) |
754 | 754 |
755 } // namespace prefs | 755 } // namespace prefs |
756 | 756 |
757 #endif // CHROME_COMMON_PREF_NAMES_H_ | 757 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |