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 1852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1863 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; | 1863 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; |
1864 const char kSyncManagedUserSharedSettings[] = | 1864 const char kSyncManagedUserSharedSettings[] = |
1865 "sync.managed_user_shared_settings"; | 1865 "sync.managed_user_shared_settings"; |
1866 const char kSyncManagedUsers[] = "sync.managed_users"; | 1866 const char kSyncManagedUsers[] = "sync.managed_users"; |
1867 const char kSyncArticles[] = "sync.articles"; | 1867 const char kSyncArticles[] = "sync.articles"; |
1868 const char kSyncPasswords[] = "sync.passwords"; | 1868 const char kSyncPasswords[] = "sync.passwords"; |
1869 const char kSyncPreferences[] = "sync.preferences"; | 1869 const char kSyncPreferences[] = "sync.preferences"; |
1870 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 1870 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
1871 const char kSyncSearchEngines[] = "sync.search_engines"; | 1871 const char kSyncSearchEngines[] = "sync.search_engines"; |
1872 const char kSyncSessions[] = "sync.sessions"; | 1872 const char kSyncSessions[] = "sync.sessions"; |
| 1873 const char kSyncSyncedNotificationAppInfo[] = |
| 1874 "sync.synced_notification_app_info"; |
1873 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1875 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1874 const char kSyncTabs[] = "sync.tabs"; | 1876 const char kSyncTabs[] = "sync.tabs"; |
1875 const char kSyncThemes[] = "sync.themes"; | 1877 const char kSyncThemes[] = "sync.themes"; |
1876 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1878 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1877 | 1879 |
1878 // Boolean used by enterprise configuration management in order to lock down | 1880 // Boolean used by enterprise configuration management in order to lock down |
1879 // sync. | 1881 // sync. |
1880 const char kSyncManaged[] = "sync.managed"; | 1882 const char kSyncManaged[] = "sync.managed"; |
1881 | 1883 |
1882 // Boolean to prevent sync from automatically starting up. This is | 1884 // Boolean to prevent sync from automatically starting up. This is |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2685 | 2687 |
2686 // The number of seconds since epoch that the OS password was last changed. | 2688 // The number of seconds since epoch that the OS password was last changed. |
2687 const char kOsPasswordLastChanged[] = | 2689 const char kOsPasswordLastChanged[] = |
2688 "password_manager.os_password_last_changed"; | 2690 "password_manager.os_password_last_changed"; |
2689 #endif | 2691 #endif |
2690 | 2692 |
2691 // Whether DNS Quick Check is disabled in proxy resolution. | 2693 // Whether DNS Quick Check is disabled in proxy resolution. |
2692 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2694 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2693 | 2695 |
2694 } // namespace prefs | 2696 } // namespace prefs |
OLD | NEW |