| 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 | 
|   34  |   37  | 
|   35 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state |   38 // For OS_CHROMEOS we maintain kApplicationLocale property in both local state | 
|   36 // and user's profile.  Global property determines locale of login screen, |   39 // and user's profile.  Global property determines locale of login screen, | 
|   37 // while user's profile determines his personal locale preference. |   40 // while user's profile determines his personal locale preference. | 
|   38 extern const char kApplicationLocale[]; |   41 extern const char kApplicationLocale[]; | 
|   39 #if defined(OS_CHROMEOS) |   42 #if defined(OS_CHROMEOS) | 
|   40 extern const char kApplicationLocaleBackup[]; |   43 extern const char kApplicationLocaleBackup[]; | 
|   41 extern const char kApplicationLocaleAccepted[]; |   44 extern const char kApplicationLocaleAccepted[]; | 
|   42 extern const char kOwnerLocale[]; |   45 extern const char kOwnerLocale[]; | 
|   43 #endif |   46 #endif | 
| (...skipping 865 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  909 extern const char kAppListLaunchCount[]; |  912 extern const char kAppListLaunchCount[]; | 
|  910 extern const char kLastAppListAppLaunchPing[]; |  913 extern const char kLastAppListAppLaunchPing[]; | 
|  911 extern const char kAppListAppLaunchCount[]; |  914 extern const char kAppListAppLaunchCount[]; | 
|  912  |  915  | 
|  913 extern const char kDRMSalt[]; |  916 extern const char kDRMSalt[]; | 
|  914 extern const char kEnableDRM[]; |  917 extern const char kEnableDRM[]; | 
|  915  |  918  | 
|  916 }  // namespace prefs |  919 }  // namespace prefs | 
|  917  |  920  | 
|  918 #endif  // CHROME_COMMON_PREF_NAMES_H_ |  921 #endif  // CHROME_COMMON_PREF_NAMES_H_ | 
| OLD | NEW |