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 865 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
876 // Boolean specifying whether to automatically sync all data types (including | 876 // Boolean specifying whether to automatically sync all data types (including |
877 // future ones, as they're added). If this is true, the following preferences | 877 // future ones, as they're added). If this is true, the following preferences |
878 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. | 878 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
879 const wchar_t kKeepEverythingSynced[] = L"sync.keep_everything_synced"; | 879 const wchar_t kKeepEverythingSynced[] = L"sync.keep_everything_synced"; |
880 | 880 |
881 // Booleans specifying whether the user has selected to sync the following | 881 // Booleans specifying whether the user has selected to sync the following |
882 // datatypes. | 882 // datatypes. |
883 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 883 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
884 const wchar_t kSyncPasswords[] = L"sync.passwords"; | 884 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
885 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 885 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
| 886 const wchar_t kSyncApps[] = L"sync.apps"; |
886 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 887 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
887 const wchar_t kSyncThemes[] = L"sync.themes"; | 888 const wchar_t kSyncThemes[] = L"sync.themes"; |
888 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 889 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
889 const wchar_t kSyncExtensions[] = L"sync.extensions"; | 890 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
890 | 891 |
891 // Boolean used by enterprise configuration management in order to lock down | 892 // Boolean used by enterprise configuration management in order to lock down |
892 // sync. | 893 // sync. |
893 const wchar_t kSyncManaged[] = L"sync.managed"; | 894 const wchar_t kSyncManaged[] = L"sync.managed"; |
894 | 895 |
895 // Boolean to prevent sync from automatically starting up. This is | 896 // Boolean to prevent sync from automatically starting up. This is |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
944 // String specifying the proxy server. For a specification of the expected | 945 // String specifying the proxy server. For a specification of the expected |
945 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 946 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
946 const wchar_t kProxyServer[] = L"proxy.server"; | 947 const wchar_t kProxyServer[] = L"proxy.server"; |
947 // URL to the proxy .pac file. | 948 // URL to the proxy .pac file. |
948 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 949 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
949 // String containing proxy bypass rules. For a specification of the | 950 // String containing proxy bypass rules. For a specification of the |
950 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 951 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
951 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 952 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
952 | 953 |
953 } // namespace prefs | 954 } // namespace prefs |
OLD | NEW |