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 898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
909 // corresponding access token. | 909 // corresponding access token. |
910 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 910 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
911 | 911 |
912 // Whether PasswordForms have been migrated from the WedDataService to the | 912 // Whether PasswordForms have been migrated from the WedDataService to the |
913 // LoginDatabase. | 913 // LoginDatabase. |
914 const char kLoginDatabaseMigrated[] = "login_database.migrated"; | 914 const char kLoginDatabaseMigrated[] = "login_database.migrated"; |
915 | 915 |
916 // The root URL of the cloud print service. | 916 // The root URL of the cloud print service. |
917 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; | 917 const char kCloudPrintServiceURL[] = "cloud_print.service_url"; |
918 | 918 |
| 919 const char kRemotingHasSetupCompleted[] = "remoting.has_setup_completed"; |
| 920 |
919 // The list of BackgroundContents that should be loaded when the browser | 921 // The list of BackgroundContents that should be loaded when the browser |
920 // launches. | 922 // launches. |
921 const char kRegisteredBackgroundContents[] = "background_contents.registered"; | 923 const char kRegisteredBackgroundContents[] = "background_contents.registered"; |
922 | 924 |
923 // *************** SERVICE PREFS *************** | 925 // *************** SERVICE PREFS *************** |
924 // These are attached to the service process. | 926 // These are attached to the service process. |
925 | 927 |
926 // The unique id for this instance of the cloud print proxy. | 928 // The unique id for this instance of the cloud print proxy. |
927 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; | 929 const char kCloudPrintProxyId[] = "cloud_print.proxy_id"; |
928 // The GAIA auth token for Cloud Print | 930 // The GAIA auth token for Cloud Print |
929 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; | 931 const char kCloudPrintAuthToken[] = "cloud_print.auth_token"; |
930 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server | 932 // The GAIA auth token used by Cloud Print to authenticate with the XMPP server |
931 // This should eventually go away because the above token should work for both. | 933 // This should eventually go away because the above token should work for both. |
932 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; | 934 const char kCloudPrintXMPPAuthToken[] = "cloud_print.xmpp_auth_token"; |
933 // The email address of the account used to authenticate with the Cloud Print | 935 // The email address of the account used to authenticate with the Cloud Print |
934 // server. | 936 // server. |
935 extern const char kCloudPrintEmail[] = "cloud_print.email"; | 937 extern const char kCloudPrintEmail[] = "cloud_print.email"; |
936 // Settings specific to underlying print system. | 938 // Settings specific to underlying print system. |
937 extern const char kCloudPrintPrintSystemSettings[] = | 939 extern const char kCloudPrintPrintSystemSettings[] = |
938 "cloud_print.print_system_settings"; | 940 "cloud_print.print_system_settings"; |
939 | 941 |
| 942 // Used by the service process to determine if the remoting host is enabled. |
| 943 const char kRemotingHostEnabled[] = "remoting.host_enabled"; |
| 944 |
940 // Boolean to disable proxy altogether. If true, other proxy | 945 // Boolean to disable proxy altogether. If true, other proxy |
941 // preferences are ignored. | 946 // preferences are ignored. |
942 const char kNoProxyServer[] = "proxy.disabled"; | 947 const char kNoProxyServer[] = "proxy.disabled"; |
943 // Boolean specifying if proxy should be auto-detected. | 948 // Boolean specifying if proxy should be auto-detected. |
944 const char kProxyAutoDetect[] = "proxy.auto_detect"; | 949 const char kProxyAutoDetect[] = "proxy.auto_detect"; |
945 // String specifying the proxy server. For a specification of the expected | 950 // String specifying the proxy server. For a specification of the expected |
946 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 951 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
947 const char kProxyServer[] = "proxy.server"; | 952 const char kProxyServer[] = "proxy.server"; |
948 // URL to the proxy .pac file. | 953 // URL to the proxy .pac file. |
949 const char kProxyPacUrl[] = "proxy.pac_url"; | 954 const char kProxyPacUrl[] = "proxy.pac_url"; |
950 // String containing proxy bypass rules. For a specification of the | 955 // String containing proxy bypass rules. For a specification of the |
951 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 956 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
952 const char kProxyBypassList[] = "proxy.bypass_list"; | 957 const char kProxyBypassList[] = "proxy.bypass_list"; |
953 | 958 |
954 } // namespace prefs | 959 } // namespace prefs |
OLD | NEW |