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 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 2082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2093 const char kCloudPrintEmail[] = "cloud_print.email"; | 2093 const char kCloudPrintEmail[] = "cloud_print.email"; |
2094 // Settings specific to underlying print system. | 2094 // Settings specific to underlying print system. |
2095 const char kCloudPrintPrintSystemSettings[] = | 2095 const char kCloudPrintPrintSystemSettings[] = |
2096 "cloud_print.print_system_settings"; | 2096 "cloud_print.print_system_settings"; |
2097 // A boolean indicating whether we should poll for print jobs when don't have | 2097 // A boolean indicating whether we should poll for print jobs when don't have |
2098 // an XMPP connection (false by default). | 2098 // an XMPP connection (false by default). |
2099 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; | 2099 const char kCloudPrintEnableJobPoll[] = "cloud_print.enable_job_poll"; |
2100 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; | 2100 const char kCloudPrintRobotRefreshToken[] = "cloud_print.robot_refresh_token"; |
2101 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; | 2101 const char kCloudPrintRobotEmail[] = "cloud_print.robot_email"; |
2102 // A boolean indicating whether we should connect to cloud print new printers. | 2102 // A boolean indicating whether we should connect to cloud print new printers. |
2103 const char kCloudPrintConnectNewPrinters[] = "cloud_print.connect_new_printers"; | 2103 const char kCloudPrintConnectNewPrinters[] = |
| 2104 "cloud_print.user_settings.connect_new_printers"; |
2104 // A boolean indicating whether we should ping XMPP connection. | 2105 // A boolean indicating whether we should ping XMPP connection. |
2105 const char kCloudPrintXmppPingEnabled[] = "cloud_print.xmpp_ping_enabled"; | 2106 const char kCloudPrintXmppPingEnabled[] = "cloud_print.xmpp_ping_enabled"; |
2106 // An int value indicating the average timeout between xmpp pings. | 2107 // An int value indicating the average timeout between xmpp pings. |
2107 const char kCloudPrintXmppPingTimeout[] = "cloud_print.xmpp_ping_timeout_sec"; | 2108 const char kCloudPrintXmppPingTimeout[] = "cloud_print.xmpp_ping_timeout_sec"; |
2108 // List of printers which should not be connected. | 2109 // Dictionary with settings stored by connector setup page. |
2109 const char kCloudPrintPrinterBlacklist[] = "cloud_print.printer_blacklist"; | 2110 const char kCloudPrintUserSettings[] = "cloud_print.user_settings"; |
| 2111 // List of printers settings. |
| 2112 extern const char kCloudPrintPrinters[] = "cloud_print.user_settings.printers"; |
2110 // A boolean indicating whether submitting jobs to Google Cloud Print is | 2113 // A boolean indicating whether submitting jobs to Google Cloud Print is |
2111 // blocked by policy. | 2114 // blocked by policy. |
2112 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; | 2115 const char kCloudPrintSubmitEnabled[] = "cloud_print.submit_enabled"; |
2113 | 2116 |
2114 // Preference to store proxy settings. | 2117 // Preference to store proxy settings. |
2115 const char kProxy[] = "proxy"; | 2118 const char kProxy[] = "proxy"; |
2116 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; | 2119 const char kMaxConnectionsPerProxy[] = "net.max_connections_per_proxy"; |
2117 | 2120 |
2118 // Preferences that are exclusively used to store managed values for default | 2121 // Preferences that are exclusively used to store managed values for default |
2119 // content settings. | 2122 // content settings. |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2384 // the time of the last ping. | 2387 // the time of the last ping. |
2385 extern const char kAppListLaunchCount[] = "app_list.launch_count"; | 2388 extern const char kAppListLaunchCount[] = "app_list.launch_count"; |
2386 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; | 2389 extern const char kLastAppListLaunchPing[] = "app_list.last_launch_ping"; |
2387 | 2390 |
2388 // The number of times the an app was launched from the app launcher since last | 2391 // The number of times the an app was launched from the app launcher since last |
2389 // ping and the time of the last ping. | 2392 // ping and the time of the last ping. |
2390 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; | 2393 extern const char kAppListAppLaunchCount[] = "app_list.app_launch_count"; |
2391 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; | 2394 extern const char kLastAppListAppLaunchPing[] = "app_list.last_app_launch_ping"; |
2392 | 2395 |
2393 } // namespace prefs | 2396 } // namespace prefs |
OLD | NEW |