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

Unified Diff: chrome/browser/extensions/test_extension_service.cc

Issue 7564037: Apps/Extensions Sync refactoring -- delete most of the old glue, implement new sync API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Release build warning :-/ Created 9 years, 4 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
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/sync/glue/app_change_processor.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/test_extension_service.cc
diff --git a/chrome/browser/extensions/test_extension_service.cc b/chrome/browser/extensions/test_extension_service.cc
index 9937cbb4ff1af42a4d0b01fdb6415308e702d925..277e8ea0b9d79c09c8d686b59c84d618054d1f02 100644
--- a/chrome/browser/extensions/test_extension_service.cc
+++ b/chrome/browser/extensions/test_extension_service.cc
@@ -65,21 +65,27 @@ void TestExtensionService::CheckForUpdatesSoon() {
ADD_FAILURE();
}
-bool TestExtensionService::GetSyncData(
- const Extension& extension, ExtensionFilter filter,
- ExtensionSyncData* extension_sync_data) const {
+SyncError TestExtensionService::MergeDataAndStartSyncing(
+ syncable::ModelType type,
+ const SyncDataList& initial_sync_data,
+ SyncChangeProcessor* sync_processor) {
+ ADD_FAILURE();
+ return SyncError();
+}
+
+void TestExtensionService::StopSyncing(syncable::ModelType type) {
ADD_FAILURE();
- return false;
}
-std::vector<ExtensionSyncData> TestExtensionService::GetSyncDataList(
- ExtensionFilter filter) const {
+SyncDataList TestExtensionService::GetAllSyncData(
+ syncable::ModelType type) const {
ADD_FAILURE();
- return std::vector<ExtensionSyncData>();
+ return SyncDataList();
}
-void TestExtensionService::ProcessSyncData(
- const ExtensionSyncData& extension_sync_data,
- ExtensionFilter filter) {
+SyncError TestExtensionService::ProcessSyncChanges(
+ const tracked_objects::Location& from_here,
+ const SyncChangeList& change_list) {
ADD_FAILURE();
+ return SyncError();
}
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/sync/glue/app_change_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698