| 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 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 extern const char kGeolocationDefaultContentSetting[]; | 605 extern const char kGeolocationDefaultContentSetting[]; |
| 606 extern const char kGeolocationContentSettings[]; | 606 extern const char kGeolocationContentSettings[]; |
| 607 #if defined(OS_ANDROID) | 607 #if defined(OS_ANDROID) |
| 608 extern const char kGeolocationEnabled[]; | 608 extern const char kGeolocationEnabled[]; |
| 609 #endif | 609 #endif |
| 610 | 610 |
| 611 extern const char kRemoteAccessHostFirewallTraversal[]; | 611 extern const char kRemoteAccessHostFirewallTraversal[]; |
| 612 extern const char kRemoteAccessHostRequireTwoFactor[]; | 612 extern const char kRemoteAccessHostRequireTwoFactor[]; |
| 613 extern const char kRemoteAccessHostDomain[]; | 613 extern const char kRemoteAccessHostDomain[]; |
| 614 extern const char kRemoteAccessHostTalkGadgetPrefix[]; | 614 extern const char kRemoteAccessHostTalkGadgetPrefix[]; |
| 615 extern const char kRemoteAccessHostRequireCurtain[]; |
| 615 | 616 |
| 616 extern const char kPrintPreviewStickySettings[]; | 617 extern const char kPrintPreviewStickySettings[]; |
| 617 extern const char kCloudPrintServiceURL[]; | 618 extern const char kCloudPrintServiceURL[]; |
| 618 extern const char kCloudPrintSigninURL[]; | 619 extern const char kCloudPrintSigninURL[]; |
| 619 extern const char kCloudPrintDialogWidth[]; | 620 extern const char kCloudPrintDialogWidth[]; |
| 620 extern const char kCloudPrintDialogHeight[]; | 621 extern const char kCloudPrintDialogHeight[]; |
| 621 extern const char kCloudPrintSigninDialogWidth[]; | 622 extern const char kCloudPrintSigninDialogWidth[]; |
| 622 extern const char kCloudPrintSigninDialogHeight[]; | 623 extern const char kCloudPrintSigninDialogHeight[]; |
| 623 extern const char kCloudPrintProxyEnabled[]; | 624 extern const char kCloudPrintProxyEnabled[]; |
| 624 extern const char kCloudPrintProxyId[]; | 625 extern const char kCloudPrintProxyId[]; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 745 #endif | 746 #endif |
| 746 | 747 |
| 747 extern const char kInManagedMode[]; | 748 extern const char kInManagedMode[]; |
| 748 | 749 |
| 749 extern const char kNetworkProfileWarningsLeft[]; | 750 extern const char kNetworkProfileWarningsLeft[]; |
| 750 extern const char kNetworkProfileLastWarningTime[]; | 751 extern const char kNetworkProfileLastWarningTime[]; |
| 751 | 752 |
| 752 } // namespace prefs | 753 } // namespace prefs |
| 753 | 754 |
| 754 #endif // CHROME_COMMON_PREF_NAMES_H_ | 755 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |