| 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 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1818 const char kSyncAutofillProfile[] = "sync.autofill_profile"; | 1818 const char kSyncAutofillProfile[] = "sync.autofill_profile"; |
| 1819 const char kSyncAutofill[] = "sync.autofill"; | 1819 const char kSyncAutofill[] = "sync.autofill"; |
| 1820 const char kSyncBookmarks[] = "sync.bookmarks"; | 1820 const char kSyncBookmarks[] = "sync.bookmarks"; |
| 1821 const char kSyncDictionary[] = "sync.dictionary"; | 1821 const char kSyncDictionary[] = "sync.dictionary"; |
| 1822 const char kSyncExtensionSettings[] = "sync.extension_settings"; | 1822 const char kSyncExtensionSettings[] = "sync.extension_settings"; |
| 1823 const char kSyncExtensions[] = "sync.extensions"; | 1823 const char kSyncExtensions[] = "sync.extensions"; |
| 1824 const char kSyncFaviconImages[] = "sync.favicon_images"; | 1824 const char kSyncFaviconImages[] = "sync.favicon_images"; |
| 1825 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; | 1825 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; |
| 1826 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; | 1826 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; |
| 1827 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; | 1827 const char kSyncManagedUserSettings[] = "sync.managed_user_settings"; |
| 1828 const char kSyncManagedUserSharedSettings[] = |
| 1829 "sync.managed_user_shared_settings"; |
| 1828 const char kSyncManagedUsers[] = "sync.managed_users"; | 1830 const char kSyncManagedUsers[] = "sync.managed_users"; |
| 1829 const char kSyncArticles[] = "sync.articles"; | 1831 const char kSyncArticles[] = "sync.articles"; |
| 1830 const char kSyncPasswords[] = "sync.passwords"; | 1832 const char kSyncPasswords[] = "sync.passwords"; |
| 1831 const char kSyncPreferences[] = "sync.preferences"; | 1833 const char kSyncPreferences[] = "sync.preferences"; |
| 1832 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; | 1834 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; |
| 1833 const char kSyncSearchEngines[] = "sync.search_engines"; | 1835 const char kSyncSearchEngines[] = "sync.search_engines"; |
| 1834 const char kSyncSessions[] = "sync.sessions"; | 1836 const char kSyncSessions[] = "sync.sessions"; |
| 1835 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; | 1837 const char kSyncSyncedNotifications[] = "sync.synced_notifications"; |
| 1836 const char kSyncTabs[] = "sync.tabs"; | 1838 const char kSyncTabs[] = "sync.tabs"; |
| 1837 const char kSyncThemes[] = "sync.themes"; | 1839 const char kSyncThemes[] = "sync.themes"; |
| (...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2611 #if defined(OS_ANDROID) | 2613 #if defined(OS_ANDROID) |
| 2612 // A list of partner bookmark rename/remove mappings. | 2614 // A list of partner bookmark rename/remove mappings. |
| 2613 // Each list item is a dictionary containing a "url", a "provider_title" and | 2615 // Each list item is a dictionary containing a "url", a "provider_title" and |
| 2614 // "mapped_title" entries, detailing the bookmark target URL (if any), the title | 2616 // "mapped_title" entries, detailing the bookmark target URL (if any), the title |
| 2615 // given by the PartnerBookmarksProvider and either the user-visible renamed | 2617 // given by the PartnerBookmarksProvider and either the user-visible renamed |
| 2616 // title or an empty string if the bookmark node was removed. | 2618 // title or an empty string if the bookmark node was removed. |
| 2617 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2619 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2618 #endif | 2620 #endif |
| 2619 | 2621 |
| 2620 } // namespace prefs | 2622 } // namespace prefs |
| OLD | NEW |