Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 239 extern const char kAutofillPersonalDataManagerFirstRun[]; | 239 extern const char kAutofillPersonalDataManagerFirstRun[]; |
| 240 extern const char kEditBookmarksEnabled[]; | 240 extern const char kEditBookmarksEnabled[]; |
| 241 | 241 |
| 242 extern const char kUseVerticalTabs[]; | 242 extern const char kUseVerticalTabs[]; |
| 243 extern const char kUseCompactNavigationBar[]; | 243 extern const char kUseCompactNavigationBar[]; |
| 244 extern const char kEnableTranslate[]; | 244 extern const char kEnableTranslate[]; |
| 245 extern const char kEnableBookmarkBar[]; | 245 extern const char kEnableBookmarkBar[]; |
| 246 extern const char kPinnedTabs[]; | 246 extern const char kPinnedTabs[]; |
| 247 extern const char kHttpThrottlingEnabled[]; | 247 extern const char kHttpThrottlingEnabled[]; |
| 248 | 248 |
| 249 extern const char kPolicyRefreshRate[]; | 249 extern const char kDevicePolicyRefreshRate[]; |
| 250 extern const char kUserPolicyRefreshRate[]; | |
|
Mattias Nissler (ping if slow)
2011/05/13 09:45:03
Please move these to the local_state prefs section
sfeuz
2011/05/17 14:27:42
Done.
| |
| 250 | 251 |
| 251 extern const char kDisable3DAPIs[]; | 252 extern const char kDisable3DAPIs[]; |
| 252 extern const char kEnableHyperlinkAuditing[]; | 253 extern const char kEnableHyperlinkAuditing[]; |
| 253 extern const char kEnableReferrers[]; | 254 extern const char kEnableReferrers[]; |
| 254 | 255 |
| 255 // Local state prefs. Please add Profile prefs above instead. | 256 // Local state prefs. Please add Profile prefs above instead. |
| 256 extern const char kCertRevocationCheckingEnabled[]; | 257 extern const char kCertRevocationCheckingEnabled[]; |
| 257 extern const char kSSL3Enabled[]; | 258 extern const char kSSL3Enabled[]; |
| 258 extern const char kTLS1Enabled[]; | 259 extern const char kTLS1Enabled[]; |
| 259 | 260 |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 497 | 498 |
| 498 extern const char kRegisteredProtocolHandlers[]; | 499 extern const char kRegisteredProtocolHandlers[]; |
| 499 extern const char kIgnoredProtocolHandlers[]; | 500 extern const char kIgnoredProtocolHandlers[]; |
| 500 extern const char kCustomHandlersEnabled[]; | 501 extern const char kCustomHandlersEnabled[]; |
| 501 | 502 |
| 502 extern const char kUserCreatedLoginItem[]; | 503 extern const char kUserCreatedLoginItem[]; |
| 503 | 504 |
| 504 } // namespace prefs | 505 } // namespace prefs |
| 505 | 506 |
| 506 #endif // CHROME_COMMON_PREF_NAMES_H_ | 507 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |