| 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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 | 900 |
| 901 #if defined(ENABLE_APP_LIST) | 901 #if defined(ENABLE_APP_LIST) |
| 902 extern const char kAppListProfile[]; | 902 extern const char kAppListProfile[]; |
| 903 extern const char kRestartWithAppList[]; | 903 extern const char kRestartWithAppList[]; |
| 904 | 904 |
| 905 extern const char kLastAppListLaunchPing[]; | 905 extern const char kLastAppListLaunchPing[]; |
| 906 extern const char kAppListLaunchCount[]; | 906 extern const char kAppListLaunchCount[]; |
| 907 extern const char kLastAppListAppLaunchPing[]; | 907 extern const char kLastAppListAppLaunchPing[]; |
| 908 extern const char kAppListAppLaunchCount[]; | 908 extern const char kAppListAppLaunchCount[]; |
| 909 extern const char kAppLauncherHasBeenEnabled[]; | 909 extern const char kAppLauncherHasBeenEnabled[]; |
| 910 extern const char kAppListEnableMethod[]; | |
| 911 extern const char kAppListEnableTime[]; | |
| 912 extern const char kAppLauncherIsEnabled[]; | 910 extern const char kAppLauncherIsEnabled[]; |
| 913 extern const char kAppLauncherShortcutVersion[]; | 911 extern const char kAppLauncherShortcutVersion[]; |
| 914 extern const char kShowAppLauncherPromo[]; | 912 extern const char kShowAppLauncherPromo[]; |
| 915 #endif | 913 #endif |
| 916 | 914 |
| 917 extern const char kAppLaunchForMetroRestart[]; | 915 extern const char kAppLaunchForMetroRestart[]; |
| 918 extern const char kAppLaunchForMetroRestartProfile[]; | 916 extern const char kAppLaunchForMetroRestartProfile[]; |
| 919 extern const char kAppShortcutsHaveBeenCreated[]; | 917 extern const char kAppShortcutsHaveBeenCreated[]; |
| 920 | 918 |
| 921 extern const char kModuleConflictBubbleShown[]; | 919 extern const char kModuleConflictBubbleShown[]; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 939 #if defined(OS_WIN) | 937 #if defined(OS_WIN) |
| 940 extern const char kOsPasswordBlank[]; | 938 extern const char kOsPasswordBlank[]; |
| 941 extern const char kOsPasswordLastChanged[]; | 939 extern const char kOsPasswordLastChanged[]; |
| 942 #endif | 940 #endif |
| 943 | 941 |
| 944 extern const char kQuickCheckEnabled[]; | 942 extern const char kQuickCheckEnabled[]; |
| 945 | 943 |
| 946 } // namespace prefs | 944 } // namespace prefs |
| 947 | 945 |
| 948 #endif // CHROME_COMMON_PREF_NAMES_H_ | 946 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |