Chromium Code Reviews| 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 13 matching lines...) Expand all Loading... | |
| 24 extern const char kHomePageChanged[]; | 24 extern const char kHomePageChanged[]; |
| 25 extern const char kManagedModeLocalPassphrase[]; | 25 extern const char kManagedModeLocalPassphrase[]; |
| 26 extern const char kManagedModeLocalSalt[]; | 26 extern const char kManagedModeLocalSalt[]; |
| 27 extern const char kManagedModeManualHosts[]; | 27 extern const char kManagedModeManualHosts[]; |
| 28 extern const char kManagedModeManualURLs[]; | 28 extern const char kManagedModeManualURLs[]; |
| 29 extern const char kSessionExitedCleanly[]; | 29 extern const char kSessionExitedCleanly[]; |
| 30 extern const char kSessionExitType[]; | 30 extern const char kSessionExitType[]; |
| 31 extern const char kRestoreOnStartup[]; | 31 extern const char kRestoreOnStartup[]; |
| 32 extern const char kURLsToRestoreOnStartup[]; | 32 extern const char kURLsToRestoreOnStartup[]; |
| 33 extern const char kRestoreOnStartupMigrated[]; | 33 extern const char kRestoreOnStartupMigrated[]; |
| 34 #if defined(OS_WIN) | |
| 35 extern const char kProfileIconCreated[]; | |
| 36 #endif | |
| 37 | |
|
Alexei Svitkine (slow)
2013/05/24 14:43:51
Nit: Remove extra blank line.
calamity
2013/05/31 04:07:27
Done.
| |
| 34 | 38 |
| 35 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 39 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state |
| 36 // and user's profile. Global property determines locale of login screen, | 40 // and user's profile. Global property determines locale of login screen, |
| 37 // while user's profile determines his personal locale preference. | 41 // while user's profile determines his personal locale preference. |
| 38 extern const char kApplicationLocale[]; | 42 extern const char kApplicationLocale[]; |
| 39 #if defined(OS_CHROMEOS) | 43 #if defined(OS_CHROMEOS) |
| 40 extern const char kApplicationLocaleBackup[]; | 44 extern const char kApplicationLocaleBackup[]; |
| 41 extern const char kApplicationLocaleAccepted[]; | 45 extern const char kApplicationLocaleAccepted[]; |
| 42 extern const char kOwnerLocale[]; | 46 extern const char kOwnerLocale[]; |
| 43 #endif | 47 #endif |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 913 extern const char kAppListLaunchCount[]; | 917 extern const char kAppListLaunchCount[]; |
| 914 extern const char kLastAppListAppLaunchPing[]; | 918 extern const char kLastAppListAppLaunchPing[]; |
| 915 extern const char kAppListAppLaunchCount[]; | 919 extern const char kAppListAppLaunchCount[]; |
| 916 | 920 |
| 917 extern const char kDRMSalt[]; | 921 extern const char kDRMSalt[]; |
| 918 extern const char kEnableDRM[]; | 922 extern const char kEnableDRM[]; |
| 919 | 923 |
| 920 } // namespace prefs | 924 } // namespace prefs |
| 921 | 925 |
| 922 #endif // CHROME_COMMON_PREF_NAMES_H_ | 926 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |