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 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
858 // Booleans specifying whether the user has selected to sync the following | 858 // Booleans specifying whether the user has selected to sync the following |
859 // datatypes. | 859 // datatypes. |
860 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 860 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
861 const wchar_t kSyncPasswords[] = L"sync.passwords"; | 861 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
862 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 862 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
863 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 863 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
864 const wchar_t kSyncThemes[] = L"sync.themes"; | 864 const wchar_t kSyncThemes[] = L"sync.themes"; |
865 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 865 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
866 const wchar_t kSyncExtensions[] = L"sync.extensions"; | 866 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
867 | 867 |
| 868 // Boolean used by enterprise configuration management in order to lock down |
| 869 // sync. |
| 870 const wchar_t kSyncManaged[] = L"sync.managed"; |
| 871 |
868 // Create web application shortcut dialog preferences. | 872 // Create web application shortcut dialog preferences. |
869 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; | 873 const wchar_t kWebAppCreateOnDesktop[] = L"browser.web_app.create_on_desktop"; |
870 const wchar_t kWebAppCreateInAppsMenu[] = | 874 const wchar_t kWebAppCreateInAppsMenu[] = |
871 L"browser.web_app.create_in_apps_menu"; | 875 L"browser.web_app.create_in_apps_menu"; |
872 const wchar_t kWebAppCreateInQuickLaunchBar[] = | 876 const wchar_t kWebAppCreateInQuickLaunchBar[] = |
873 L"browser.web_app.create_in_quick_launch_bar"; | 877 L"browser.web_app.create_in_quick_launch_bar"; |
874 | 878 |
875 // Dictionary that maps Geolocation network provider server URLs to | 879 // Dictionary that maps Geolocation network provider server URLs to |
876 // corresponding access token. | 880 // corresponding access token. |
877 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; | 881 const wchar_t kGeolocationAccessToken[] = L"geolocation.access_token"; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
913 // String specifying the proxy server. For a specification of the expected | 917 // String specifying the proxy server. For a specification of the expected |
914 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 918 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
915 const wchar_t kProxyServer[] = L"proxy.server"; | 919 const wchar_t kProxyServer[] = L"proxy.server"; |
916 // URL to the proxy .pac file. | 920 // URL to the proxy .pac file. |
917 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 921 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
918 // String containing proxy bypass rules. For a specification of the | 922 // String containing proxy bypass rules. For a specification of the |
919 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 923 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
920 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 924 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
921 | 925 |
922 } // namespace prefs | 926 } // namespace prefs |
OLD | NEW |