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> |
| 11 | 11 |
| 12 #include "build/build_config.h" | 12 #include "build/build_config.h" |
| 13 | 13 |
| 14 namespace prefs { | 14 namespace prefs { |
| 15 | 15 |
| 16 // Profile prefs. Please add Local State prefs below instead. | 16 // Profile prefs. Please add Local State prefs below instead. |
| 17 extern const char kDefaultApps[]; | 17 extern const char kDefaultApps[]; |
| 18 extern const char kDefaultAppsInstalled[]; | 18 extern const char kDefaultAppsInstalled[]; |
| 19 extern const char kHomePageIsNewTabPage[]; | 19 extern const char kHomePageIsNewTabPage[]; |
| 20 extern const char kHomePage[]; | 20 extern const char kHomePage[]; |
| 21 extern const char kHomePageChanged[]; | 21 extern const char kHomePageChanged[]; |
| 22 extern const char kManagedModeManualHosts[]; | 22 extern const char kManagedModeManualHosts[]; |
| 23 extern const char kManagedModeManualURLs[]; | 23 extern const char kManagedModeManualURLs[]; |
| 24 extern const char kManagedModeLocalPassphrase[]; | |
|
Bernhard Bauer
2013/02/07 15:33:11
Nit: Alphabetize please.
Adrian Kuegel
2013/02/07 16:31:26
This happened during the rebase, I guess it was co
| |
| 25 extern const char kManagedModeLocalSalt[]; | |
| 24 extern const char kSessionExitedCleanly[]; | 26 extern const char kSessionExitedCleanly[]; |
| 25 extern const char kSessionExitType[]; | 27 extern const char kSessionExitType[]; |
| 26 extern const char kRestoreOnStartup[]; | 28 extern const char kRestoreOnStartup[]; |
| 27 extern const char kURLsToRestoreOnStartup[]; | 29 extern const char kURLsToRestoreOnStartup[]; |
| 28 extern const char kRestoreOnStartupMigrated[]; | 30 extern const char kRestoreOnStartupMigrated[]; |
| 29 extern const char kDisableScreenshots[]; | 31 extern const char kDisableScreenshots[]; |
|
Bernhard Bauer
2013/02/07 15:33:11
Nit: while you're at it, could you alphabetize thi
Adrian Kuegel
2013/02/07 16:31:26
Done.
| |
| 30 | 32 |
| 31 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 33 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state |
| 32 // and user's profile. Global property determines locale of login screen, | 34 // and user's profile. Global property determines locale of login screen, |
| 33 // while user's profile determines his personal locale preference. | 35 // while user's profile determines his personal locale preference. |
| 34 extern const char kApplicationLocale[]; | 36 extern const char kApplicationLocale[]; |
| 35 #if defined(OS_CHROMEOS) | 37 #if defined(OS_CHROMEOS) |
| 36 extern const char kApplicationLocaleBackup[]; | 38 extern const char kApplicationLocaleBackup[]; |
| 37 extern const char kApplicationLocaleAccepted[]; | 39 extern const char kApplicationLocaleAccepted[]; |
| 38 extern const char kOwnerLocale[]; | 40 extern const char kOwnerLocale[]; |
| 39 #endif | 41 #endif |
| (...skipping 798 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 838 extern const char kRLZDisabled[]; | 840 extern const char kRLZDisabled[]; |
| 839 #endif | 841 #endif |
| 840 | 842 |
| 841 #if defined(ENABLE_APP_LIST) | 843 #if defined(ENABLE_APP_LIST) |
| 842 extern const char kAppListProfile[]; | 844 extern const char kAppListProfile[]; |
| 843 #endif | 845 #endif |
| 844 | 846 |
| 845 } // namespace prefs | 847 } // namespace prefs |
| 846 | 848 |
| 847 #endif // CHROME_COMMON_PREF_NAMES_H_ | 849 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |