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

Unified Diff: chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc

Issue 9489002: Enable the syncing of extension and app settings by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix unit tests Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
diff --git a/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc b/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
index ad448531003fd211705154c630856c062c6f3b01..74cebe9798a9e6c665199686bd0f54c3aa26fe0a 100644
--- a/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
+++ b/chrome/browser/sync/profile_sync_components_factory_impl_unittest.cc
@@ -33,17 +33,19 @@ class ProfileSyncComponentsFactoryImplTest : public testing::Test {
// Returns the collection of default datatypes.
static std::vector<syncable::ModelType> DefaultDatatypes() {
std::vector<syncable::ModelType> datatypes;
- datatypes.push_back(syncable::BOOKMARKS);
- datatypes.push_back(syncable::PREFERENCES);
- datatypes.push_back(syncable::AUTOFILL);
- datatypes.push_back(syncable::THEMES);
- datatypes.push_back(syncable::EXTENSIONS);
datatypes.push_back(syncable::APPS);
datatypes.push_back(syncable::APP_NOTIFICATIONS);
+ datatypes.push_back(syncable::APP_SETTINGS);
+ datatypes.push_back(syncable::AUTOFILL);
datatypes.push_back(syncable::AUTOFILL_PROFILE);
+ datatypes.push_back(syncable::BOOKMARKS);
+ datatypes.push_back(syncable::EXTENSIONS);
+ datatypes.push_back(syncable::EXTENSION_SETTINGS);
datatypes.push_back(syncable::PASSWORDS);
- datatypes.push_back(syncable::TYPED_URLS);
+ datatypes.push_back(syncable::PREFERENCES);
datatypes.push_back(syncable::SEARCH_ENGINES);
+ datatypes.push_back(syncable::THEMES);
+ datatypes.push_back(syncable::TYPED_URLS);
return datatypes;
}
« no previous file with comments | « chrome/browser/sync/profile_sync_components_factory_impl.cc ('k') | chrome/browser/sync/test/integration/sync_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698