| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1866 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1877 // server. | 1877 // server. |
| 1878 const char kCloudPrintEmail[] = "cloud_print.email"; | 1878 const char kCloudPrintEmail[] = "cloud_print.email"; |
| 1879 // Settings specific to underlying print system. | 1879 // Settings specific to underlying print system. |
| 1880 const char kCloudPrintPrintSystemSettings[] = | 1880 const char kCloudPrintPrintSystemSettings[] = |
| 1881 "cloud_print.print_system_settings"; | 1881 "cloud_print.print_system_settings"; |
| 1882 // A boolean indicating whether we should poll for print jobs when don't have | 1882 // A boolean indicating whether we should poll for print jobs when don't have |
| 1883 // an XMPP connection (false by default). | 1883 // an XMPP connection (false by default). |
| 1884 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 1884 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
| 1885 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 1885 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
| 1886 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 1886 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
| 1887 // A boolean indicating whether we should connect to cloud print new printers. |
| 1888 const char kCloudPrintConnectNewPrinters[] = "cloud_print.connect_new_printers"; |
| 1889 // List of printers which should not be connected. |
| 1890 const char kCloudPrintPrinterBlacklist[] = "cloud_print.printer_blacklist"; |
| 1887 // Indicates whether the Mac Virtual driver is enabled. | 1891 // Indicates whether the Mac Virtual driver is enabled. |
| 1888 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; | 1892 const char kVirtualPrinterDriverEnabled[] = "cloud_print.enable_virtual_driver"; |
| 1889 // A boolean indicating whether submitting jobs to Google Cloud Print is | 1893 // A boolean indicating whether submitting jobs to Google Cloud Print is |
| 1890 // blocked by policy. | 1894 // blocked by policy. |
| 1891 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; | 1895 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; |
| 1892 | 1896 |
| 1893 // Preference to store proxy settings. | 1897 // Preference to store proxy settings. |
| 1894 const char kProxy[] = "proxy"; | 1898 const char kProxy[] = "proxy"; |
| 1895 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 1899 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
| 1896 | 1900 |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2061 // Tracks the time of the last shown warning. Used to reset | 2065 // Tracks the time of the last shown warning. Used to reset |
| 2062 // |network_profile.warnings_left| after a silence period. | 2066 // |network_profile.warnings_left| after a silence period. |
| 2063 const char kNetworkProfileLastWarningTime[] = | 2067 const char kNetworkProfileLastWarningTime[] = |
| 2064 "network_profile.last_warning_time"; | 2068 "network_profile.last_warning_time"; |
| 2065 | 2069 |
| 2066 // 64-bit serialization of the time last policy usage statistics were collected | 2070 // 64-bit serialization of the time last policy usage statistics were collected |
| 2067 // by UMA_HISTOGRAM_ENUMERATION. | 2071 // by UMA_HISTOGRAM_ENUMERATION. |
| 2068 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; | 2072 const char kLastPolicyStatisticsUpdate[] = "policy.last_statistics_update"; |
| 2069 | 2073 |
| 2070 } // namespace prefs | 2074 } // namespace prefs |
| OLD | NEW |