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