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 460 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 extern const char kCloudPrintDialogHeight[]; | 471 extern const char kCloudPrintDialogHeight[]; |
472 extern const char kCloudPrintProxyEnabled[]; | 472 extern const char kCloudPrintProxyEnabled[]; |
473 extern const char kCloudPrintProxyId[]; | 473 extern const char kCloudPrintProxyId[]; |
474 extern const char kCloudPrintAuthToken[]; | 474 extern const char kCloudPrintAuthToken[]; |
475 extern const char kCloudPrintXMPPAuthToken[]; | 475 extern const char kCloudPrintXMPPAuthToken[]; |
476 extern const char kCloudPrintEmail[]; | 476 extern const char kCloudPrintEmail[]; |
477 extern const char kCloudPrintPrintSystemSettings[]; | 477 extern const char kCloudPrintPrintSystemSettings[]; |
478 extern const char kCloudPrintEnableJobPoll[]; | 478 extern const char kCloudPrintEnableJobPoll[]; |
479 extern const char kCloudPrintRobotRefreshToken[]; | 479 extern const char kCloudPrintRobotRefreshToken[]; |
480 extern const char kCloudPrintRobotEmail[]; | 480 extern const char kCloudPrintRobotEmail[]; |
| 481 extern const char kVirtualPrinterDriverEnabled[]; |
481 | 482 |
482 extern const char kProxy[]; | 483 extern const char kProxy[]; |
483 extern const char kMaxConnectionsPerProxy[]; | 484 extern const char kMaxConnectionsPerProxy[]; |
484 | 485 |
485 extern const char kManagedDefaultCookiesSetting[]; | 486 extern const char kManagedDefaultCookiesSetting[]; |
486 extern const char kManagedDefaultImagesSetting[]; | 487 extern const char kManagedDefaultImagesSetting[]; |
487 extern const char kManagedDefaultJavaScriptSetting[]; | 488 extern const char kManagedDefaultJavaScriptSetting[]; |
488 extern const char kManagedDefaultPluginsSetting[]; | 489 extern const char kManagedDefaultPluginsSetting[]; |
489 extern const char kManagedDefaultPopupsSetting[]; | 490 extern const char kManagedDefaultPopupsSetting[]; |
490 extern const char kManagedDefaultGeolocationSetting[]; | 491 extern const char kManagedDefaultGeolocationSetting[]; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 | 526 |
526 extern const char kRegisteredProtocolHandlers[]; | 527 extern const char kRegisteredProtocolHandlers[]; |
527 extern const char kIgnoredProtocolHandlers[]; | 528 extern const char kIgnoredProtocolHandlers[]; |
528 extern const char kCustomHandlersEnabled[]; | 529 extern const char kCustomHandlersEnabled[]; |
529 | 530 |
530 extern const char kUserCreatedLoginItem[]; | 531 extern const char kUserCreatedLoginItem[]; |
531 extern const char kBackgroundModeEnabled[]; | 532 extern const char kBackgroundModeEnabled[]; |
532 | 533 |
533 extern const char kDevicePolicyRefreshRate[]; | 534 extern const char kDevicePolicyRefreshRate[]; |
534 extern const char kUserPolicyRefreshRate[]; | 535 extern const char kUserPolicyRefreshRate[]; |
| 536 |
535 } // namespace prefs | 537 } // namespace prefs |
536 | 538 |
537 #endif // CHROME_COMMON_PREF_NAMES_H_ | 539 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |