| 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 extern const char kChromeOSReleaseNotesVersion[]; | 279 extern const char kChromeOSReleaseNotesVersion[]; |
| 280 extern const char kUseSharedProxies[]; | 280 extern const char kUseSharedProxies[]; |
| 281 extern const char kOAuth1Token[]; | 281 extern const char kOAuth1Token[]; |
| 282 extern const char kOAuth1Secret[]; | 282 extern const char kOAuth1Secret[]; |
| 283 extern const char kEnableCrosDRM[]; | 283 extern const char kEnableCrosDRM[]; |
| 284 extern const char kDisplayOverscans[]; | 284 extern const char kDisplayOverscans[]; |
| 285 extern const char kPrimaryDisplayID[]; | 285 extern const char kPrimaryDisplayID[]; |
| 286 extern const char kSecondaryDisplayLayout[]; | 286 extern const char kSecondaryDisplayLayout[]; |
| 287 extern const char kSecondaryDisplayOffset[]; | 287 extern const char kSecondaryDisplayOffset[]; |
| 288 extern const char kSecondaryDisplays[]; | 288 extern const char kSecondaryDisplays[]; |
| 289 extern const char kSessionStartTime[]; |
| 290 extern const char kSessionLengthLimit[]; |
| 289 #endif // defined(OS_CHROMEOS) | 291 #endif // defined(OS_CHROMEOS) |
| 290 extern const char kIpcDisabledMessages[]; | 292 extern const char kIpcDisabledMessages[]; |
| 291 extern const char kShowHomeButton[]; | 293 extern const char kShowHomeButton[]; |
| 292 extern const char kRecentlySelectedEncoding[]; | 294 extern const char kRecentlySelectedEncoding[]; |
| 293 extern const char kDeleteBrowsingHistory[]; | 295 extern const char kDeleteBrowsingHistory[]; |
| 294 extern const char kDeleteDownloadHistory[]; | 296 extern const char kDeleteDownloadHistory[]; |
| 295 extern const char kDeleteCache[]; | 297 extern const char kDeleteCache[]; |
| 296 extern const char kDeleteCookies[]; | 298 extern const char kDeleteCookies[]; |
| 297 extern const char kDeletePasswords[]; | 299 extern const char kDeletePasswords[]; |
| 298 extern const char kDeleteFormData[]; | 300 extern const char kDeleteFormData[]; |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 803 | 805 |
| 804 extern const char kLastPolicyStatisticsUpdate[]; | 806 extern const char kLastPolicyStatisticsUpdate[]; |
| 805 | 807 |
| 806 #if defined(OS_CHROMEOS) | 808 #if defined(OS_CHROMEOS) |
| 807 extern const char kRLZBrand[]; | 809 extern const char kRLZBrand[]; |
| 808 #endif | 810 #endif |
| 809 | 811 |
| 810 } // namespace prefs | 812 } // namespace prefs |
| 811 | 813 |
| 812 #endif // CHROME_COMMON_PREF_NAMES_H_ | 814 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |