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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
247 extern const char kEnableTranslate[]; | 247 extern const char kEnableTranslate[]; |
248 extern const char kEnableBookmarkBar[]; | 248 extern const char kEnableBookmarkBar[]; |
249 extern const char kPinnedTabs[]; | 249 extern const char kPinnedTabs[]; |
250 extern const char kHttpThrottlingEnabled[]; | 250 extern const char kHttpThrottlingEnabled[]; |
251 extern const char kHttpThrottlingMayExperiment[]; | 251 extern const char kHttpThrottlingMayExperiment[]; |
252 | 252 |
253 extern const char kDisable3DAPIs[]; | 253 extern const char kDisable3DAPIs[]; |
254 extern const char kEnableHyperlinkAuditing[]; | 254 extern const char kEnableHyperlinkAuditing[]; |
255 extern const char kEnableReferrers[]; | 255 extern const char kEnableReferrers[]; |
256 | 256 |
| 257 #if defined(OS_MACOSX) |
| 258 extern const char kPresentationModeEnabled[]; |
| 259 #endif |
| 260 |
257 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) | 261 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) && defined(OS_POSIX) |
258 extern const char kLocalProfileId[]; | 262 extern const char kLocalProfileId[]; |
259 extern const char kPasswordsUseLocalProfileId[]; | 263 extern const char kPasswordsUseLocalProfileId[]; |
260 #endif | 264 #endif |
261 | 265 |
262 // Local state prefs. Please add Profile prefs above instead. | 266 // Local state prefs. Please add Profile prefs above instead. |
263 extern const char kCertRevocationCheckingEnabled[]; | 267 extern const char kCertRevocationCheckingEnabled[]; |
264 extern const char kSSL3Enabled[]; | 268 extern const char kSSL3Enabled[]; |
265 extern const char kTLS1Enabled[]; | 269 extern const char kTLS1Enabled[]; |
266 extern const char kCipherSuiteBlacklist[]; | 270 extern const char kCipherSuiteBlacklist[]; |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 extern const char kCustomHandlersEnabled[]; | 529 extern const char kCustomHandlersEnabled[]; |
526 | 530 |
527 extern const char kUserCreatedLoginItem[]; | 531 extern const char kUserCreatedLoginItem[]; |
528 extern const char kBackgroundModeEnabled[]; | 532 extern const char kBackgroundModeEnabled[]; |
529 | 533 |
530 extern const char kDevicePolicyRefreshRate[]; | 534 extern const char kDevicePolicyRefreshRate[]; |
531 extern const char kUserPolicyRefreshRate[]; | 535 extern const char kUserPolicyRefreshRate[]; |
532 } // namespace prefs | 536 } // namespace prefs |
533 | 537 |
534 #endif // CHROME_COMMON_PREF_NAMES_H_ | 538 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |