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