| 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 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 #if BUILDFLAG(ENABLE_APP_LIST) | 799 #if BUILDFLAG(ENABLE_APP_LIST) |
| 800 extern const char kAppListProfile[]; | 800 extern const char kAppListProfile[]; |
| 801 extern const char kLastAppListLaunchPing[]; | 801 extern const char kLastAppListLaunchPing[]; |
| 802 extern const char kAppListLaunchCount[]; | 802 extern const char kAppListLaunchCount[]; |
| 803 extern const char kLastAppListAppLaunchPing[]; | 803 extern const char kLastAppListAppLaunchPing[]; |
| 804 extern const char kAppListAppLaunchCount[]; | 804 extern const char kAppListAppLaunchCount[]; |
| 805 extern const char kAppLauncherHasBeenEnabled[]; | 805 extern const char kAppLauncherHasBeenEnabled[]; |
| 806 extern const char kAppListEnableMethod[]; | 806 extern const char kAppListEnableMethod[]; |
| 807 extern const char kAppListEnableTime[]; | 807 extern const char kAppListEnableTime[]; |
| 808 extern const char kAppListLocalState[]; | 808 extern const char kAppListLocalState[]; |
| 809 #if defined(OS_MACOSX) | |
| 810 extern const char kAppLauncherShortcutVersion[]; | |
| 811 #endif | |
| 812 extern const char kShowAppLauncherPromo[]; | 809 extern const char kShowAppLauncherPromo[]; |
| 813 extern const char kAppLauncherDriveAppMapping[]; | 810 extern const char kAppLauncherDriveAppMapping[]; |
| 814 extern const char kAppLauncherUninstalledDriveApps[]; | 811 extern const char kAppLauncherUninstalledDriveApps[]; |
| 815 #endif // BUILDFLAG(ENABLE_APP_LIST) | 812 #endif // BUILDFLAG(ENABLE_APP_LIST) |
| 816 | 813 |
| 817 #if defined(OS_WIN) | 814 #if defined(OS_WIN) |
| 818 extern const char kAppLaunchForMetroRestart[]; | 815 extern const char kAppLaunchForMetroRestart[]; |
| 819 extern const char kAppLaunchForMetroRestartProfile[]; | 816 extern const char kAppLaunchForMetroRestartProfile[]; |
| 820 #endif | 817 #endif |
| 821 extern const char kAppShortcutsVersion[]; | 818 extern const char kAppShortcutsVersion[]; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 910 extern const char kHistoryPageIOSPromoDismissed[]; | 907 extern const char kHistoryPageIOSPromoDismissed[]; |
| 911 #endif | 908 #endif |
| 912 | 909 |
| 913 extern const char kSettingsResetPromptPromptWave[]; | 910 extern const char kSettingsResetPromptPromptWave[]; |
| 914 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; | 911 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; |
| 915 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; | 912 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; |
| 916 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; | 913 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; |
| 917 } // namespace prefs | 914 } // namespace prefs |
| 918 | 915 |
| 919 #endif // CHROME_COMMON_PREF_NAMES_H_ | 916 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |