OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1854 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1854 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
1855 const char kSyncAutofill[] = "sync.autofill"; | 1855 const char kSyncAutofill[] = "sync.autofill"; |
1856 const char kSyncBookmarks[] = "sync.bookmarks"; | 1856 const char kSyncBookmarks[] = "sync.bookmarks"; |
1857 const char kSyncDictionary[] = "sync.dictionary"; | 1857 const char kSyncDictionary[] = "sync.dictionary"; |
1858 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1858 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1859 const char kSyncExtensions[] = "sync.extensions"; | 1859 const char kSyncExtensions[] = "sync.extensions"; |
1860 const char kSyncFaviconImages[] = "sync.favicon_images"; | 1860 const char kSyncFaviconImages[] = "sync.favicon_images"; |
1861 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 1861 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
1862 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1862 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
1863 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; | 1863 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; |
| 1864 const char kSyncManagedUserSharedSettings[] = |
| 1865 "sync.managed_user_shared_settings"; |
1864 const char kSyncManagedUsers[] = "sync.managed_users"; | 1866 const char kSyncManagedUsers[] = "sync.managed_users"; |
1865 const char kSyncArticles[] = "sync.articles"; | 1867 const char kSyncArticles[] = "sync.articles"; |
1866 const char kSyncPasswords[] = "sync.passwords"; | 1868 const char kSyncPasswords[] = "sync.passwords"; |
1867 const char kSyncPreferences[] = "sync.preferences"; | 1869 const char kSyncPreferences[] = "sync.preferences"; |
1868 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 1870 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
1869 const char kSyncSearchEngines[] = "sync.search_engines"; | 1871 const char kSyncSearchEngines[] = "sync.search_engines"; |
1870 const char kSyncSessions[] = "sync.sessions"; | 1872 const char kSyncSessions[] = "sync.sessions"; |
1871 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1873 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1872 const char kSyncTabs[] = "sync.tabs"; | 1874 const char kSyncTabs[] = "sync.tabs"; |
1873 const char kSyncThemes[] = "sync.themes"; | 1875 const char kSyncThemes[] = "sync.themes"; |
(...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2673 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2675 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
2674 | 2676 |
2675 // The number of seconds since epoch that the OS password was last changed. | 2677 // The number of seconds since epoch that the OS password was last changed. |
2676 const char kOsPasswordLastChanged[] = | 2678 const char kOsPasswordLastChanged[] = |
2677 "password_manager.os_password_last_changed"; | 2679 "password_manager.os_password_last_changed"; |
2678 #endif | 2680 #endif |
2679 | 2681 |
2680 // Whether DNS Quick Check is disabled in proxy resolution. | 2682 // Whether DNS Quick Check is disabled in proxy resolution. |
2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2683 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2682 } // namespace prefs | 2684 } // namespace prefs |
OLD | NEW |