| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // *************** PROFILE PREFS *************** | 9 // *************** PROFILE PREFS *************** |
| 10 // These are attached to the user profile | 10 // These are attached to the user profile |
| (...skipping 930 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 941 | 941 |
| 942 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; | 942 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; |
| 943 | 943 |
| 944 // The list of BackgroundContents that should be loaded when the browser | 944 // The list of BackgroundContents that should be loaded when the browser |
| 945 // launches. | 945 // launches. |
| 946 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 946 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
| 947 | 947 |
| 948 // *************** SERVICE PREFS *************** | 948 // *************** SERVICE PREFS *************** |
| 949 // These are attached to the service process. | 949 // These are attached to the service process. |
| 950 | 950 |
| 951 const char kCloudPrintProxyEnabled[] = "cloud_print.enabled"; |
| 951 // The unique id for this instance of the cloud print proxy. | 952 // The unique id for this instance of the cloud print proxy. |
| 952 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 953 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
| 953 // The GAIA auth token for Cloud Print | 954 // The GAIA auth token for Cloud Print |
| 954 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 955 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
| 955 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 956 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
| 956 // This should eventually go away because the above token should work for both. | 957 // This should eventually go away because the above token should work for both. |
| 957 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; | 958 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; |
| 958 // The email address of the account used to authenticate with the Cloud Print | 959 // The email address of the account used to authenticate with the Cloud Print |
| 959 // server. | 960 // server. |
| 960 extern const char kCloudPrintEmail[] = "cloud_print.email"; | 961 extern const char kCloudPrintEmail[] = "cloud_print.email"; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 973 // String specifying the proxy server. For a specification of the expected | 974 // String specifying the proxy server. For a specification of the expected |
| 974 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 975 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 975 const char kProxyServer[] = "proxy.server"; | 976 const char kProxyServer[] = "proxy.server"; |
| 976 // URL to the proxy .pac file. | 977 // URL to the proxy .pac file. |
| 977 const char kProxyPacUrl[] = "proxy.pac_url"; | 978 const char kProxyPacUrl[] = "proxy.pac_url"; |
| 978 // String containing proxy bypass rules. For a specification of the | 979 // String containing proxy bypass rules. For a specification of the |
| 979 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 980 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 980 const char kProxyBypassList[] = "proxy.bypass_list"; | 981 const char kProxyBypassList[] = "proxy.bypass_list"; |
| 981 | 982 |
| 982 } // namespace prefs | 983 } // namespace prefs |
| OLD | NEW |