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 1783 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1794 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; | 1794 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; |
1795 const char kSyncManagedUserSharedSettings[] = | 1795 const char kSyncManagedUserSharedSettings[] = |
1796 "sync.managed_user_shared_settings"; | 1796 "sync.managed_user_shared_settings"; |
1797 const char kSyncManagedUsers[] = "sync.managed_users"; | 1797 const char kSyncManagedUsers[] = "sync.managed_users"; |
1798 const char kSyncArticles[] = "sync.articles"; | 1798 const char kSyncArticles[] = "sync.articles"; |
1799 const char kSyncPasswords[] = "sync.passwords"; | 1799 const char kSyncPasswords[] = "sync.passwords"; |
1800 const char kSyncPreferences[] = "sync.preferences"; | 1800 const char kSyncPreferences[] = "sync.preferences"; |
1801 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 1801 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
1802 const char kSyncSearchEngines[] = "sync.search_engines"; | 1802 const char kSyncSearchEngines[] = "sync.search_engines"; |
1803 const char kSyncSessions[] = "sync.sessions"; | 1803 const char kSyncSessions[] = "sync.sessions"; |
| 1804 const char kSyncSyncedNotificationAppInfo[] = |
| 1805 "sync.synced_notification_app_info"; |
1804 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1806 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1805 const char kSyncTabs[] = "sync.tabs"; | 1807 const char kSyncTabs[] = "sync.tabs"; |
1806 const char kSyncThemes[] = "sync.themes"; | 1808 const char kSyncThemes[] = "sync.themes"; |
1807 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1809 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1808 | 1810 |
1809 // Boolean used by enterprise configuration management in order to lock down | 1811 // Boolean used by enterprise configuration management in order to lock down |
1810 // sync. | 1812 // sync. |
1811 const char kSyncManaged[] = "sync.managed"; | 1813 const char kSyncManaged[] = "sync.managed"; |
1812 | 1814 |
1813 // Boolean to prevent sync from automatically starting up. This is | 1815 // Boolean to prevent sync from automatically starting up. This is |
(...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2622 | 2624 |
2623 // The number of seconds since epoch that the OS password was last changed. | 2625 // The number of seconds since epoch that the OS password was last changed. |
2624 const char kOsPasswordLastChanged[] = | 2626 const char kOsPasswordLastChanged[] = |
2625 "password_manager.os_password_last_changed"; | 2627 "password_manager.os_password_last_changed"; |
2626 #endif | 2628 #endif |
2627 | 2629 |
2628 // Whether DNS Quick Check is disabled in proxy resolution. | 2630 // Whether DNS Quick Check is disabled in proxy resolution. |
2629 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2631 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2630 | 2632 |
2631 } // namespace prefs | 2633 } // namespace prefs |
OLD | NEW |