| 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 859 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 870 extern const char kMediaRouterTabMirroringSources[]; | 870 extern const char kMediaRouterTabMirroringSources[]; |
| 871 #endif | 871 #endif |
| 872 | 872 |
| 873 extern const char kOriginTrialPublicKey[]; | 873 extern const char kOriginTrialPublicKey[]; |
| 874 extern const char kOriginTrialDisabledFeatures[]; | 874 extern const char kOriginTrialDisabledFeatures[]; |
| 875 extern const char kOriginTrialDisabledTokens[]; | 875 extern const char kOriginTrialDisabledTokens[]; |
| 876 | 876 |
| 877 extern const char kComponentUpdatesEnabled[]; | 877 extern const char kComponentUpdatesEnabled[]; |
| 878 | 878 |
| 879 #if defined(OS_ANDROID) | 879 #if defined(OS_ANDROID) |
| 880 extern const char kLocationSettingsBackoffLevelDSE[]; |
| 881 extern const char kLocationSettingsBackoffLevelDefault[]; |
| 882 extern const char kLocationSettingsNextShowDSE[]; |
| 883 extern const char kLocationSettingsNextShowDefault[]; |
| 884 |
| 880 extern const char kSearchGeolocationDisclosureDismissed[]; | 885 extern const char kSearchGeolocationDisclosureDismissed[]; |
| 881 extern const char kSearchGeolocationDisclosureShownCount[]; | 886 extern const char kSearchGeolocationDisclosureShownCount[]; |
| 882 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 887 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
| 883 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; | 888 extern const char kSearchGeolocationPreDisclosureMetricsRecorded[]; |
| 884 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; | 889 extern const char kSearchGeolocationPostDisclosureMetricsRecorded[]; |
| 885 #endif | 890 #endif |
| 886 | 891 |
| 887 extern const char kGoogleDSEGeolocationSetting[]; | 892 extern const char kGoogleDSEGeolocationSetting[]; |
| 888 | 893 |
| 889 extern const char kWebShareVisitedTargets[]; | 894 extern const char kWebShareVisitedTargets[]; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 905 extern const char kHistoryPageIOSPromoDismissed[]; | 910 extern const char kHistoryPageIOSPromoDismissed[]; |
| 906 #endif | 911 #endif |
| 907 | 912 |
| 908 extern const char kSettingsResetPromptPromptWave[]; | 913 extern const char kSettingsResetPromptPromptWave[]; |
| 909 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; | 914 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; |
| 910 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; | 915 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; |
| 911 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; | 916 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; |
| 912 } // namespace prefs | 917 } // namespace prefs |
| 913 | 918 |
| 914 #endif // CHROME_COMMON_PREF_NAMES_H_ | 919 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |