| 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 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 extern const char kFactoryResetRequested[]; | 730 extern const char kFactoryResetRequested[]; |
| 731 extern const char kDebuggingFeaturesRequested[]; | 731 extern const char kDebuggingFeaturesRequested[]; |
| 732 | 732 |
| 733 #if defined(OS_CHROMEOS) | 733 #if defined(OS_CHROMEOS) |
| 734 extern const char kResolveDeviceTimezoneByGeolocation[]; | 734 extern const char kResolveDeviceTimezoneByGeolocation[]; |
| 735 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; | 735 extern const char kSystemTimezoneAutomaticDetectionPolicy[]; |
| 736 #endif // defined(OS_CHROMEOS) | 736 #endif // defined(OS_CHROMEOS) |
| 737 | 737 |
| 738 #if defined(ENABLE_MEDIA_ROUTER) | 738 #if defined(ENABLE_MEDIA_ROUTER) |
| 739 extern const char kEnableMediaRouter[]; | 739 extern const char kEnableMediaRouter[]; |
| 740 #if !defined(OS_ANDROID) |
| 741 extern const char kShowCastIconInToolbar[]; |
| 742 #endif // !defined(OS_ANDROID) |
| 740 #endif // defined(ENABLE_MEDIA_ROUTER) | 743 #endif // defined(ENABLE_MEDIA_ROUTER) |
| 741 | 744 |
| 742 #if !defined(OS_ANDROID) | 745 #if !defined(OS_ANDROID) |
| 743 extern const char kAttemptedToEnableAutoupdate[]; | 746 extern const char kAttemptedToEnableAutoupdate[]; |
| 744 | 747 |
| 745 extern const char kMediaGalleriesUniqueId[]; | 748 extern const char kMediaGalleriesUniqueId[]; |
| 746 extern const char kMediaGalleriesRememberedGalleries[]; | 749 extern const char kMediaGalleriesRememberedGalleries[]; |
| 747 #endif // !defined(OS_ANDROID) | 750 #endif // !defined(OS_ANDROID) |
| 748 | 751 |
| 749 #if defined(USE_AURA) | 752 #if defined(USE_AURA) |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 868 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 871 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
| 869 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; | 872 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; |
| 870 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; | 873 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; |
| 871 #endif | 874 #endif |
| 872 | 875 |
| 873 extern const char kGoogleDSEGeolocationSetting[]; | 876 extern const char kGoogleDSEGeolocationSetting[]; |
| 874 | 877 |
| 875 } // namespace prefs | 878 } // namespace prefs |
| 876 | 879 |
| 877 #endif // CHROME_COMMON_PREF_NAMES_H_ | 880 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |