| 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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 extern const char kMultiProfileNeverShowIntro[]; | 255 extern const char kMultiProfileNeverShowIntro[]; |
| 256 extern const char kMultiProfileWarningShowDismissed[]; | 256 extern const char kMultiProfileWarningShowDismissed[]; |
| 257 extern const char kMultiProfileUserBehavior[]; | 257 extern const char kMultiProfileUserBehavior[]; |
| 258 extern const char kFirstRunTutorialShown[]; | 258 extern const char kFirstRunTutorialShown[]; |
| 259 extern const char kSAMLOfflineSigninTimeLimit[]; | 259 extern const char kSAMLOfflineSigninTimeLimit[]; |
| 260 extern const char kSAMLLastGAIASignInTime[]; | 260 extern const char kSAMLLastGAIASignInTime[]; |
| 261 extern const char kTimeOnOobe[]; | 261 extern const char kTimeOnOobe[]; |
| 262 extern const char kCurrentWallpaperAppName[]; | 262 extern const char kCurrentWallpaperAppName[]; |
| 263 extern const char kFileSystemProviderMounted[]; | 263 extern const char kFileSystemProviderMounted[]; |
| 264 extern const char kTouchVirtualKeyboardEnabled[]; | 264 extern const char kTouchVirtualKeyboardEnabled[]; |
| 265 extern const char kTouchScreenEnabled[]; |
| 266 extern const char kTouchPadEnabled[]; |
| 265 extern const char kWakeOnWifiDarkConnect[]; | 267 extern const char kWakeOnWifiDarkConnect[]; |
| 266 extern const char kCaptivePortalAuthenticationIgnoresProxy[]; | 268 extern const char kCaptivePortalAuthenticationIgnoresProxy[]; |
| 267 extern const char kForceMaximizeOnFirstRun[]; | 269 extern const char kForceMaximizeOnFirstRun[]; |
| 268 extern const char kPlatformKeys[]; | 270 extern const char kPlatformKeys[]; |
| 269 extern const char kUnifiedDesktopEnabledByDefault[]; | 271 extern const char kUnifiedDesktopEnabledByDefault[]; |
| 270 #endif // defined(OS_CHROMEOS) | 272 #endif // defined(OS_CHROMEOS) |
| 271 extern const char kShowHomeButton[]; | 273 extern const char kShowHomeButton[]; |
| 272 extern const char kRecentlySelectedEncoding[]; | 274 extern const char kRecentlySelectedEncoding[]; |
| 273 extern const char kDeleteBrowsingHistory[]; | 275 extern const char kDeleteBrowsingHistory[]; |
| 274 extern const char kDeleteDownloadHistory[]; | 276 extern const char kDeleteDownloadHistory[]; |
| (...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 extern const char kAnimationPolicy[]; | 791 extern const char kAnimationPolicy[]; |
| 790 #endif | 792 #endif |
| 791 | 793 |
| 792 extern const char kBackgroundTracingLastUpload[]; | 794 extern const char kBackgroundTracingLastUpload[]; |
| 793 | 795 |
| 794 extern const char kAllowDinosaurEasterEgg[]; | 796 extern const char kAllowDinosaurEasterEgg[]; |
| 795 | 797 |
| 796 } // namespace prefs | 798 } // namespace prefs |
| 797 | 799 |
| 798 #endif // CHROME_COMMON_PREF_NAMES_H_ | 800 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |