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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
449 extern const char kCloudPrintProxyId[]; | 449 extern const char kCloudPrintProxyId[]; |
450 extern const char kCloudPrintAuthToken[]; | 450 extern const char kCloudPrintAuthToken[]; |
451 extern const char kCloudPrintXMPPAuthToken[]; | 451 extern const char kCloudPrintXMPPAuthToken[]; |
452 extern const char kCloudPrintEmail[]; | 452 extern const char kCloudPrintEmail[]; |
453 extern const char kCloudPrintPrintSystemSettings[]; | 453 extern const char kCloudPrintPrintSystemSettings[]; |
454 extern const char kCloudPrintEnableJobPoll[]; | 454 extern const char kCloudPrintEnableJobPoll[]; |
455 extern const char kCloudPrintRobotRefreshToken[]; | 455 extern const char kCloudPrintRobotRefreshToken[]; |
456 extern const char kCloudPrintRobotEmail[]; | 456 extern const char kCloudPrintRobotEmail[]; |
457 | 457 |
458 extern const char kProxy[]; | 458 extern const char kProxy[]; |
459 extern const char kMaxConnectionsPerProxy[]; | |
460 | 459 |
461 extern const char kManagedDefaultCookiesSetting[]; | 460 extern const char kManagedDefaultCookiesSetting[]; |
462 extern const char kManagedDefaultImagesSetting[]; | 461 extern const char kManagedDefaultImagesSetting[]; |
463 extern const char kManagedDefaultJavaScriptSetting[]; | 462 extern const char kManagedDefaultJavaScriptSetting[]; |
464 extern const char kManagedDefaultPluginsSetting[]; | 463 extern const char kManagedDefaultPluginsSetting[]; |
465 extern const char kManagedDefaultPopupsSetting[]; | 464 extern const char kManagedDefaultPopupsSetting[]; |
466 | 465 |
467 extern const char kManagedCookiesAllowedForUrls[]; | 466 extern const char kManagedCookiesAllowedForUrls[]; |
468 extern const char kManagedCookiesBlockedForUrls[]; | 467 extern const char kManagedCookiesBlockedForUrls[]; |
469 extern const char kManagedCookiesSessionOnlyForUrls[]; | 468 extern const char kManagedCookiesSessionOnlyForUrls[]; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 extern const char kCustomHandlersEnabled[]; | 500 extern const char kCustomHandlersEnabled[]; |
502 | 501 |
503 extern const char kUserCreatedLoginItem[]; | 502 extern const char kUserCreatedLoginItem[]; |
504 extern const char kBackgroundModeEnabled[]; | 503 extern const char kBackgroundModeEnabled[]; |
505 | 504 |
506 extern const char kDevicePolicyRefreshRate[]; | 505 extern const char kDevicePolicyRefreshRate[]; |
507 extern const char kUserPolicyRefreshRate[]; | 506 extern const char kUserPolicyRefreshRate[]; |
508 } // namespace prefs | 507 } // namespace prefs |
509 | 508 |
510 #endif // CHROME_COMMON_PREF_NAMES_H_ | 509 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |