| 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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 | 743 |
| 744 #if defined(ENABLE_APP_LIST) | 744 #if defined(ENABLE_APP_LIST) |
| 745 extern const char kAppListProfile[]; | 745 extern const char kAppListProfile[]; |
| 746 extern const char kLastAppListLaunchPing[]; | 746 extern const char kLastAppListLaunchPing[]; |
| 747 extern const char kAppListLaunchCount[]; | 747 extern const char kAppListLaunchCount[]; |
| 748 extern const char kLastAppListAppLaunchPing[]; | 748 extern const char kLastAppListAppLaunchPing[]; |
| 749 extern const char kAppListAppLaunchCount[]; | 749 extern const char kAppListAppLaunchCount[]; |
| 750 extern const char kAppLauncherHasBeenEnabled[]; | 750 extern const char kAppLauncherHasBeenEnabled[]; |
| 751 extern const char kAppListEnableMethod[]; | 751 extern const char kAppListEnableMethod[]; |
| 752 extern const char kAppListEnableTime[]; | 752 extern const char kAppListEnableTime[]; |
| 753 extern const char kAppListLastLaunchTime[]; | |
| 754 #if defined(OS_MACOSX) | 753 #if defined(OS_MACOSX) |
| 755 extern const char kAppLauncherShortcutVersion[]; | 754 extern const char kAppLauncherShortcutVersion[]; |
| 756 #endif | 755 #endif |
| 757 extern const char kShowAppLauncherPromo[]; | 756 extern const char kShowAppLauncherPromo[]; |
| 758 extern const char kAppLauncherDriveAppMapping[]; | 757 extern const char kAppLauncherDriveAppMapping[]; |
| 759 extern const char kAppLauncherUninstalledDriveApps[]; | 758 extern const char kAppLauncherUninstalledDriveApps[]; |
| 760 #endif // defined(ENABLE_APP_LIST) | 759 #endif // defined(ENABLE_APP_LIST) |
| 761 | 760 |
| 762 #if defined(OS_WIN) | 761 #if defined(OS_WIN) |
| 763 extern const char kAppLaunchForMetroRestart[]; | 762 extern const char kAppLaunchForMetroRestart[]; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 #endif // defined(GOOGLE_CHROME_BUILD) | 809 #endif // defined(GOOGLE_CHROME_BUILD) |
| 811 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 810 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 812 #endif | 811 #endif |
| 813 | 812 |
| 814 extern const char kOriginTrialPublicKey[]; | 813 extern const char kOriginTrialPublicKey[]; |
| 815 extern const char kOriginTrialDisabledFeatures[]; | 814 extern const char kOriginTrialDisabledFeatures[]; |
| 816 | 815 |
| 817 } // namespace prefs | 816 } // namespace prefs |
| 818 | 817 |
| 819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 818 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |