Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(822)

Side by Side Diff: components/sync_driver/pref_names.cc

Issue 566623003: Refactor syncable DEVICE_INFO type from ChangeProcessor to SyncableService - part 3. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More CR feedback addressed in DeviceInfoSyncService. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/sync_driver/pref_names.h ('k') | components/sync_driver/sync_prefs.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "components/sync_driver/pref_names.h" 5 #include "components/sync_driver/pref_names.h"
6 6
7 namespace sync_driver { 7 namespace sync_driver {
8 8
9 namespace prefs { 9 namespace prefs {
10 10
(...skipping 20 matching lines...) Expand all
31 // Booleans specifying whether the user has selected to sync the following 31 // Booleans specifying whether the user has selected to sync the following
32 // datatypes. 32 // datatypes.
33 const char kSyncAppList[] = "sync.app_list"; 33 const char kSyncAppList[] = "sync.app_list";
34 const char kSyncAppNotifications[] = "sync.app_notifications"; 34 const char kSyncAppNotifications[] = "sync.app_notifications";
35 const char kSyncAppSettings[] = "sync.app_settings"; 35 const char kSyncAppSettings[] = "sync.app_settings";
36 const char kSyncApps[] = "sync.apps"; 36 const char kSyncApps[] = "sync.apps";
37 const char kSyncArticles[] = "sync.articles"; 37 const char kSyncArticles[] = "sync.articles";
38 const char kSyncAutofillProfile[] = "sync.autofill_profile"; 38 const char kSyncAutofillProfile[] = "sync.autofill_profile";
39 const char kSyncAutofill[] = "sync.autofill"; 39 const char kSyncAutofill[] = "sync.autofill";
40 const char kSyncBookmarks[] = "sync.bookmarks"; 40 const char kSyncBookmarks[] = "sync.bookmarks";
41 const char kSyncDeviceInfo[] = "sync.device_info";
41 const char kSyncDictionary[] = "sync.dictionary"; 42 const char kSyncDictionary[] = "sync.dictionary";
42 const char kSyncExtensionSettings[] = "sync.extension_settings"; 43 const char kSyncExtensionSettings[] = "sync.extension_settings";
43 const char kSyncExtensions[] = "sync.extensions"; 44 const char kSyncExtensions[] = "sync.extensions";
44 const char kSyncFaviconImages[] = "sync.favicon_images"; 45 const char kSyncFaviconImages[] = "sync.favicon_images";
45 const char kSyncFaviconTracking[] = "sync.favicon_tracking"; 46 const char kSyncFaviconTracking[] = "sync.favicon_tracking";
46 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives"; 47 const char kSyncHistoryDeleteDirectives[] = "sync.history_delete_directives";
47 const char kSyncPasswords[] = "sync.passwords"; 48 const char kSyncPasswords[] = "sync.passwords";
48 const char kSyncPreferences[] = "sync.preferences"; 49 const char kSyncPreferences[] = "sync.preferences";
49 const char kSyncPriorityPreferences[] = "sync.priority_preferences"; 50 const char kSyncPriorityPreferences[] = "sync.priority_preferences";
50 const char kSyncSearchEngines[] = "sync.search_engines"; 51 const char kSyncSearchEngines[] = "sync.search_engines";
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 98
98 // Stores how many times to try rollback before giving up. 99 // Stores how many times to try rollback before giving up.
99 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries"; 100 const char kSyncRemainingRollbackTries[] = "sync.remaining_rollback_tries";
100 101
101 // Stores the timestamp of first sync. 102 // Stores the timestamp of first sync.
102 const char kSyncFirstSyncTime[] = "sync.first_sync_time"; 103 const char kSyncFirstSyncTime[] = "sync.first_sync_time";
103 104
104 } // namespace prefs 105 } // namespace prefs
105 106
106 } // namespace sync_driver 107 } // namespace sync_driver
OLDNEW
« no previous file with comments | « components/sync_driver/pref_names.h ('k') | components/sync_driver/sync_prefs.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698