| 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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 881 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
| 882 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 882 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
| 883 const wchar_t kSyncThemes[] = L"sync.themes"; | 883 const wchar_t kSyncThemes[] = L"sync.themes"; |
| 884 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 884 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
| 885 const wchar_t kSyncExtensions[] = L"sync.extensions"; | 885 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
| 886 | 886 |
| 887 // Boolean used by enterprise configuration management in order to lock down | 887 // Boolean used by enterprise configuration management in order to lock down |
| 888 // sync. | 888 // sync. |
| 889 const wchar_t kSyncManaged[] = L"sync.managed"; | 889 const wchar_t kSyncManaged[] = L"sync.managed"; |
| 890 | 890 |
| 891 // Boolean to prevent sync from automatically starting up. This is | |
| 892 // used when sync is disabled by the user via the privacy dashboard. | |
| 893 const wchar_t kSyncSuppressStart[] = L"sync.suppress_start"; | |
| 894 | |
| 895 // Create web application shortcut dialog preferences. | 891 // Create web application shortcut dialog preferences. |
| 896 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 892 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
| 897 const wchar_t kWebAppCreateInAppsMenu[] = | 893 const wchar_t kWebAppCreateInAppsMenu[] = |
| 898 L"browser.web_app.create_in_apps_menu"; | 894 L"browser.web_app.create_in_apps_menu"; |
| 899 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 895 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
| 900 L"browser.web_app.create_in_quick_launch_bar"; | 896 L"browser.web_app.create_in_quick_launch_bar"; |
| 901 | 897 |
| 902 // Dictionary that maps Geolocation network provider server URLs to | 898 // Dictionary that maps Geolocation network provider server URLs to |
| 903 // corresponding access token. | 899 // corresponding access token. |
| 904 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; | 900 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 940 // String specifying the proxy server. For a specification of the expected | 936 // String specifying the proxy server. For a specification of the expected |
| 941 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 937 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 942 const wchar_t kProxyServer[] = L"proxy.server"; | 938 const wchar_t kProxyServer[] = L"proxy.server"; |
| 943 // URL to the proxy .pac file. | 939 // URL to the proxy .pac file. |
| 944 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 940 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
| 945 // String containing proxy bypass rules. For a specification of the | 941 // String containing proxy bypass rules. For a specification of the |
| 946 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 942 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 947 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 943 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
| 948 | 944 |
| 949 } // namespace prefs | 945 } // namespace prefs |
| OLD | NEW |