| 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 | |
| 854 // Booleans specifying whether the user has selected to sync the following | 849 // Booleans specifying whether the user has selected to sync the following |
| 855 // datatypes. | 850 // datatypes. |
| 856 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; | 851 const wchar_t kSyncBookmarks[] = L"sync.bookmarks"; |
| 857 const wchar_t kSyncPasswords[] = L"sync.passwords"; | 852 const wchar_t kSyncPasswords[] = L"sync.passwords"; |
| 858 const wchar_t kSyncPreferences[] = L"sync.preferences"; | 853 const wchar_t kSyncPreferences[] = L"sync.preferences"; |
| 859 const wchar_t kSyncAutofill[] = L"sync.autofill"; | 854 const wchar_t kSyncAutofill[] = L"sync.autofill"; |
| 860 const wchar_t kSyncThemes[] = L"sync.themes"; | 855 const wchar_t kSyncThemes[] = L"sync.themes"; |
| 861 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; | 856 const wchar_t kSyncTypedUrls[] = L"sync.typed_urls"; |
| 862 const wchar_t kSyncExtensions[] = L"sync.extensions"; | 857 const wchar_t kSyncExtensions[] = L"sync.extensions"; |
| 863 | 858 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 // String specifying the proxy server. For a specification of the expected | 904 // String specifying the proxy server. For a specification of the expected |
| 910 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). | 905 // syntax see net::ProxyConfig::ProxyRules::ParseFromString(). |
| 911 const wchar_t kProxyServer[] = L"proxy.server"; | 906 const wchar_t kProxyServer[] = L"proxy.server"; |
| 912 // URL to the proxy .pac file. | 907 // URL to the proxy .pac file. |
| 913 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; | 908 const wchar_t kProxyPacUrl[] = L"proxy.pac_url"; |
| 914 // String containing proxy bypass rules. For a specification of the | 909 // String containing proxy bypass rules. For a specification of the |
| 915 // expected syntax see net::ProxyBypassRules::ParseFromString(). | 910 // expected syntax see net::ProxyBypassRules::ParseFromString(). |
| 916 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; | 911 const wchar_t kProxyBypassList[] = L"proxy.bypass_list"; |
| 917 | 912 |
| 918 } // namespace prefs | 913 } // namespace prefs |
| OLD | NEW |