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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
916 const char kSyncSessions[] = "sync.sessions"; | 916 const char kSyncSessions[] = "sync.sessions"; |
917 | 917 |
918 // Boolean used by enterprise configuration management in order to lock down | 918 // Boolean used by enterprise configuration management in order to lock down |
919 // sync. | 919 // sync. |
920 const char kSyncManaged[] = "sync.managed"; | 920 const char kSyncManaged[] = "sync.managed"; |
921 | 921 |
922 // Boolean to prevent sync from automatically starting up. This is | 922 // Boolean to prevent sync from automatically starting up. This is |
923 // used when sync is disabled by the user via the privacy dashboard. | 923 // used when sync is disabled by the user via the privacy dashboard. |
924 const char kSyncSuppressStart[] = "sync.suppress_start"; | 924 const char kSyncSuppressStart[] = "sync.suppress_start"; |
925 | 925 |
| 926 // Boolean to reperesent if sync credentials have been migrated from the |
| 927 // user settings DB to the token service. |
| 928 const char kSyncCredentialsMigrated[] = "sync.credentials_migrated"; |
| 929 |
926 // A string that can be used to restore sync encryption infrastructure on | 930 // A string that can be used to restore sync encryption infrastructure on |
927 // startup so that the user doesn't need to provide credentials on each start. | 931 // startup so that the user doesn't need to provide credentials on each start. |
928 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; | 932 const char kEncryptionBootstrapToken[] = "sync.encryption_bootstrap_token"; |
929 | 933 |
| 934 // String that identifies the user logged into sync and other google services. |
| 935 const char kGoogleServicesUsername[] = "google.services.username"; |
| 936 |
930 // Create web application shortcut dialog preferences. | 937 // Create web application shortcut dialog preferences. |
931 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; | 938 const char kWebAppCreateOnDesktop[] = "browser.web_app.create_on_desktop"; |
932 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; | 939 const char kWebAppCreateInAppsMenu[] = "browser.web_app.create_in_apps_menu"; |
933 const char kWebAppCreateInQuickLaunchBar[] = | 940 const char kWebAppCreateInQuickLaunchBar[] = |
934 "browser.web_app.create_in_quick_launch_bar"; | 941 "browser.web_app.create_in_quick_launch_bar"; |
935 | 942 |
936 // Dictionary that maps Geolocation network provider server URLs to | 943 // Dictionary that maps Geolocation network provider server URLs to |
937 // corresponding access token. | 944 // corresponding access token. |
938 const char kGeolocationAccessToken[] = "geolocation.access_token"; | 945 const char kGeolocationAccessToken[] = "geolocation.access_token"; |
939 | 946 |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
979 // String specifying the proxy server. For a specification of the expected | 986 // String specifying the proxy server. For a specification of the expected |
980 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 987 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
981 const char kProxyServer[] = "proxy.server"; | 988 const char kProxyServer[] = "proxy.server"; |
982 // URL to the proxy .pac file. | 989 // URL to the proxy .pac file. |
983 const char kProxyPacUrl[] = "proxy.pac_url"; | 990 const char kProxyPacUrl[] = "proxy.pac_url"; |
984 // String containing proxy bypass rules. For a specification of the | 991 // String containing proxy bypass rules. For a specification of the |
985 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 992 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
986 const char kProxyBypassList[] = "proxy.bypass_list"; | 993 const char kProxyBypassList[] = "proxy.bypass_list"; |
987 | 994 |
988 } // namespace prefs | 995 } // namespace prefs |
OLD | NEW |