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 828 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
839 | 839 |
840 // Integer location of the split bar in the browser view. | 840 // Integer location of the split bar in the browser view. |
841 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; | 841 const wchar_t kDevToolsSplitLocation[] = L"devtools.split_location"; |
842 | 842 |
843 // 64-bit integer serialization of the base::Time when the last sync occurred. | 843 // 64-bit integer serialization of the base::Time when the last sync occurred. |
844 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; | 844 const wchar_t kSyncLastSyncedTime[] = L"sync.last_synced_time"; |
845 | 845 |
846 // Boolean specifying whether the user finished setting up sync. | 846 // Boolean specifying whether the user finished setting up sync. |
847 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; | 847 const wchar_t kSyncHasSetupCompleted[] = L"sync.has_setup_completed"; |
848 | 848 |
| 849 // Boolean specifying whether to automatically sync all data types (including |
| 850 // future ones, as they're added). If this is true, the following preferences |
| 851 // (kSyncBookmarks, kSyncPasswords, etc.) can all be ignored. |
| 852 const wchar_t kKeepEverythingSynced[] = L"sync.keep_everything_synced"; |
| 853 |
849 // Booleans specifying whether the user has selected to sync the following | 854 // Booleans specifying whether the user has selected to sync the following |
850 // datatypes. | 855 // datatypes. |
851 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 856 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
852 const wchar_t kSyncPasswords[] = L"sync.passwords"; | 857 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
853 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 858 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
854 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 859 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
855 const wchar_t kSyncThemes[] = L"sync.themes"; | 860 const wchar_t kSyncThemes[] = L"sync.themes"; |
856 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 861 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
857 const wchar_t kSyncExtensions[] = L"sync.extensions"; | 862 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
858 | 863 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
904 // String specifying the proxy server. For a specification of the expected | 909 // String specifying the proxy server. For a specification of the expected |
905 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 910 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
906 const wchar_t kProxyServer[] = L"proxy.server"; | 911 const wchar_t kProxyServer[] = L"proxy.server"; |
907 // URL to the proxy .pac file. | 912 // URL to the proxy .pac file. |
908 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 913 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
909 // String containing proxy bypass rules. For a specification of the | 914 // String containing proxy bypass rules. For a specification of the |
910 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 915 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
911 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 916 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
912 | 917 |
913 } // namespace prefs | 918 } // namespace prefs |
OLD | NEW |