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 | 8 |
9 namespace prefs { | 9 namespace prefs { |
10 | 10 |
(...skipping 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 const char kSyncTypedUrls[] = "sync.typed_urls"; | 1747 const char kSyncTypedUrls[] = "sync.typed_urls"; |
1748 const char kSyncExtensions[] = "sync.extensions"; | 1748 const char kSyncExtensions[] = "sync.extensions"; |
1749 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1749 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
1750 const char kSyncSearchEngines[] = "sync.search_engines"; | 1750 const char kSyncSearchEngines[] = "sync.search_engines"; |
1751 const char kSyncSessions[] = "sync.sessions"; | 1751 const char kSyncSessions[] = "sync.sessions"; |
1752 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1752 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
1753 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1753 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
1754 const char kSyncDictionary[] = "sync.dictionary"; | 1754 const char kSyncDictionary[] = "sync.dictionary"; |
1755 const char kSyncFaviconImages[] = "sync.favicon_images"; | 1755 const char kSyncFaviconImages[] = "sync.favicon_images"; |
1756 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 1756 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
| 1757 const char kSyncTabs[] = "sync.tabs"; |
1757 | 1758 |
1758 // Boolean used by enterprise configuration management in order to lock down | 1759 // Boolean used by enterprise configuration management in order to lock down |
1759 // sync. | 1760 // sync. |
1760 const char kSyncManaged[] = "sync.managed"; | 1761 const char kSyncManaged[] = "sync.managed"; |
1761 | 1762 |
1762 // Boolean to prevent sync from automatically starting up. This is | 1763 // Boolean to prevent sync from automatically starting up. This is |
1763 // used when sync is disabled by the user via the privacy dashboard. | 1764 // used when sync is disabled by the user via the privacy dashboard. |
1764 const char kSyncSuppressStart[] = "sync.suppress_start"; | 1765 const char kSyncSuppressStart[] = "sync.suppress_start"; |
1765 | 1766 |
1766 // List of the currently acknowledged set of sync types, used to figure out | 1767 // List of the currently acknowledged set of sync types, used to figure out |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2332 const char kRLZBrand[] = "rlz.brand"; | 2333 const char kRLZBrand[] = "rlz.brand"; |
2333 // Whether RLZ pings are disabled. | 2334 // Whether RLZ pings are disabled. |
2334 const char kRLZDisabled[] = "rlz.disabled"; | 2335 const char kRLZDisabled[] = "rlz.disabled"; |
2335 #endif | 2336 #endif |
2336 | 2337 |
2337 // The directory in user data dir that contains the profile to be used with the | 2338 // The directory in user data dir that contains the profile to be used with the |
2338 // app launcher. | 2339 // app launcher. |
2339 extern const char kAppListProfile[] = "app_list.profile"; | 2340 extern const char kAppListProfile[] = "app_list.profile"; |
2340 | 2341 |
2341 } // namespace prefs | 2342 } // namespace prefs |
OLD | NEW |