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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1546 // Settings specific to underlying print system. | 1546 // Settings specific to underlying print system. |
1547 const char kCloudPrintPrintSystemSettings[] = | 1547 const char kCloudPrintPrintSystemSettings[] = |
1548 "cloud_print.print_system_settings"; | 1548 "cloud_print.print_system_settings"; |
1549 // A boolean indicating whether we should poll for print jobs when don't have | 1549 // A boolean indicating whether we should poll for print jobs when don't have |
1550 // an XMPP connection (false by default). | 1550 // an XMPP connection (false by default). |
1551 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 1551 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
1552 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 1552 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
1553 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 1553 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
1554 // Indicates whether the Mac Virtual driver is enabled. | 1554 // Indicates whether the Mac Virtual driver is enabled. |
1555 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; | 1555 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; |
1556 // A boolean indicating whether submitting jobs to Google Cloud Print is | |
1557 // blocked by policy. | |
1558 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; | |
1559 | 1556 |
1560 // Preference to store proxy settings. | 1557 // Preference to store proxy settings. |
1561 const char kProxy[] = "proxy"; | 1558 const char kProxy[] = "proxy"; |
1562 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1559 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
1563 | 1560 |
1564 // Preferences that are exclusively used to store managed values for default | 1561 // Preferences that are exclusively used to store managed values for default |
1565 // content settings. | 1562 // content settings. |
1566 const char kManagedDefaultCookiesSetting[] = | 1563 const char kManagedDefaultCookiesSetting[] = |
1567 "profile.managed_default_content_settings.cookies"; | 1564 "profile.managed_default_content_settings.cookies"; |
1568 const char kManagedDefaultImagesSetting[] = | 1565 const char kManagedDefaultImagesSetting[] = |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1636 | 1633 |
1637 // String that represents the recovery component last downloaded version. This | 1634 // String that represents the recovery component last downloaded version. This |
1638 // takes the usual 'a.b.c.d' notation. | 1635 // takes the usual 'a.b.c.d' notation. |
1639 const char kRecoveryComponentVersion[] = "recovery_component.version"; | 1636 const char kRecoveryComponentVersion[] = "recovery_component.version"; |
1640 | 1637 |
1641 // String that stores the component updater last known state. This is used for | 1638 // String that stores the component updater last known state. This is used for |
1642 // troubleshooting. | 1639 // troubleshooting. |
1643 const char kComponentUpdaterState[] = "component_updater.state"; | 1640 const char kComponentUpdaterState[] = "component_updater.state"; |
1644 | 1641 |
1645 } // namespace prefs | 1642 } // namespace prefs |
OLD | NEW |