| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 extern const char kPowerPresentationScreenDimDelayFactor[]; | 263 extern const char kPowerPresentationScreenDimDelayFactor[]; |
| 264 extern const char kPowerUserActivityScreenDimDelayFactor[]; | 264 extern const char kPowerUserActivityScreenDimDelayFactor[]; |
| 265 extern const char kTermsOfServiceURL[]; | 265 extern const char kTermsOfServiceURL[]; |
| 266 extern const char kUsedPolicyCertificatesOnce[]; | 266 extern const char kUsedPolicyCertificatesOnce[]; |
| 267 extern const char kAttestationEnabled[]; | 267 extern const char kAttestationEnabled[]; |
| 268 extern const char kAttestationExtensionWhitelist[]; | 268 extern const char kAttestationExtensionWhitelist[]; |
| 269 extern const char kTouchHudProjectionEnabled[]; | 269 extern const char kTouchHudProjectionEnabled[]; |
| 270 extern const char kOpenNetworkConfiguration[]; | 270 extern const char kOpenNetworkConfiguration[]; |
| 271 extern const char kRAConsentFirstTime[]; | 271 extern const char kRAConsentFirstTime[]; |
| 272 extern const char kRAConsentDomains[]; | 272 extern const char kRAConsentDomains[]; |
| 273 extern const char kRAConsentAlways[]; | |
| 274 extern const char kMultiProfileNotificationDismissed[]; | 273 extern const char kMultiProfileNotificationDismissed[]; |
| 275 extern const char kMultiProfileUserBehavior[]; | 274 extern const char kMultiProfileUserBehavior[]; |
| 276 #endif // defined(OS_CHROMEOS) | 275 #endif // defined(OS_CHROMEOS) |
| 277 extern const char kIpcDisabledMessages[]; | 276 extern const char kIpcDisabledMessages[]; |
| 278 extern const char kShowHomeButton[]; | 277 extern const char kShowHomeButton[]; |
| 279 extern const char kRecentlySelectedEncoding[]; | 278 extern const char kRecentlySelectedEncoding[]; |
| 280 extern const char kDeleteBrowsingHistory[]; | 279 extern const char kDeleteBrowsingHistory[]; |
| 281 extern const char kDeleteDownloadHistory[]; | 280 extern const char kDeleteDownloadHistory[]; |
| 282 extern const char kDeleteCache[]; | 281 extern const char kDeleteCache[]; |
| 283 extern const char kDeleteCookies[]; | 282 extern const char kDeleteCookies[]; |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 919 | 918 |
| 920 extern const char kWatchdogExtensionActive[]; | 919 extern const char kWatchdogExtensionActive[]; |
| 921 | 920 |
| 922 extern const char kProfilePreferenceHashes[]; | 921 extern const char kProfilePreferenceHashes[]; |
| 923 | 922 |
| 924 extern const char kNetworkTimeMapping[]; | 923 extern const char kNetworkTimeMapping[]; |
| 925 | 924 |
| 926 } // namespace prefs | 925 } // namespace prefs |
| 927 | 926 |
| 928 #endif // CHROME_COMMON_PREF_NAMES_H_ | 927 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |