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[]; |
459 | 460 |
460 extern const char kManagedDefaultCookiesSetting[]; | 461 extern const char kManagedDefaultCookiesSetting[]; |
461 extern const char kManagedDefaultImagesSetting[]; | 462 extern const char kManagedDefaultImagesSetting[]; |
462 extern const char kManagedDefaultJavaScriptSetting[]; | 463 extern const char kManagedDefaultJavaScriptSetting[]; |
463 extern const char kManagedDefaultPluginsSetting[]; | 464 extern const char kManagedDefaultPluginsSetting[]; |
464 extern const char kManagedDefaultPopupsSetting[]; | 465 extern const char kManagedDefaultPopupsSetting[]; |
465 | 466 |
466 extern const char kManagedCookiesAllowedForUrls[]; | 467 extern const char kManagedCookiesAllowedForUrls[]; |
467 extern const char kManagedCookiesBlockedForUrls[]; | 468 extern const char kManagedCookiesBlockedForUrls[]; |
468 extern const char kManagedCookiesSessionOnlyForUrls[]; | 469 extern const char kManagedCookiesSessionOnlyForUrls[]; |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
500 extern const char kCustomHandlersEnabled[]; | 501 extern const char kCustomHandlersEnabled[]; |
501 | 502 |
502 extern const char kUserCreatedLoginItem[]; | 503 extern const char kUserCreatedLoginItem[]; |
503 extern const char kBackgroundModeEnabled[]; | 504 extern const char kBackgroundModeEnabled[]; |
504 | 505 |
505 extern const char kDevicePolicyRefreshRate[]; | 506 extern const char kDevicePolicyRefreshRate[]; |
506 extern const char kUserPolicyRefreshRate[]; | 507 extern const char kUserPolicyRefreshRate[]; |
507 } // namespace prefs | 508 } // namespace prefs |
508 | 509 |
509 #endif // CHROME_COMMON_PREF_NAMES_H_ | 510 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |