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

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

Issue 7692003: Revert 97482 - Apps/Extensions Sync refactoring -- delete most of the old glue, implement new syn... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: 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
Index: chrome/browser/extensions/test_extension_service.h
===================================================================
--- chrome/browser/extensions/test_extension_service.h (revision 97482)
+++ chrome/browser/extensions/test_extension_service.h (working copy)
@@ -42,16 +42,14 @@
const std::vector<std::string>& blacklist) OVERRIDE;
virtual void CheckAdminBlacklist() OVERRIDE;
virtual void CheckForUpdatesSoon() OVERRIDE;
-
- virtual SyncError MergeDataAndStartSyncing(
- syncable::ModelType type,
- const SyncDataList& initial_sync_data,
- SyncChangeProcessor* sync_processor) OVERRIDE;
- virtual void StopSyncing(syncable::ModelType type) OVERRIDE;
- virtual SyncDataList GetAllSyncData(syncable::ModelType type) const OVERRIDE;
- virtual SyncError ProcessSyncChanges(
- const tracked_objects::Location& from_here,
- const SyncChangeList& change_list) OVERRIDE;
+ virtual bool GetSyncData(
+ const Extension& extension, ExtensionFilter filter,
+ ExtensionSyncData* extension_sync_data) const OVERRIDE;
+ virtual std::vector<ExtensionSyncData> GetSyncDataList(
+ ExtensionFilter filter) const OVERRIDE;
+ virtual void ProcessSyncData(
+ const ExtensionSyncData& extension_sync_data,
+ ExtensionFilter filter) OVERRIDE;
};
#endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
« no previous file with comments | « chrome/browser/extensions/extension_sync_data_unittest.cc ('k') | chrome/browser/extensions/test_extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698