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

Unified Diff: components/sync/core_impl/test/fake_sync_manager.cc

Issue 2284283002: Remove stl_util's STLElementDeleter from sync. (Closed)
Patch Set: Created 4 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 | « components/sync/core_impl/sync_manager_impl.cc ('k') | components/sync/driver/glue/sync_backend_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/core_impl/test/fake_sync_manager.cc
diff --git a/components/sync/core_impl/test/fake_sync_manager.cc b/components/sync/core_impl/test/fake_sync_manager.cc
index a102889a07ea0953b6ff3f85ea4813e6fa2e4eb3..9490c229438b101c6f63a00974fb9a020d0dc950 100644
--- a/components/sync/core_impl/test/fake_sync_manager.cc
+++ b/components/sync/core_impl/test/fake_sync_manager.cc
@@ -221,9 +221,9 @@ SyncEncryptionHandler* FakeSyncManager::GetEncryptionHandler() {
return fake_encryption_handler_.get();
}
-ScopedVector<syncer::ProtocolEvent>
+std::vector<std::unique_ptr<ProtocolEvent>>
FakeSyncManager::GetBufferedProtocolEvents() {
- return ScopedVector<syncer::ProtocolEvent>();
+ return std::vector<std::unique_ptr<ProtocolEvent>>();
}
std::unique_ptr<base::ListValue> FakeSyncManager::GetAllNodesForType(
« no previous file with comments | « components/sync/core_impl/sync_manager_impl.cc ('k') | components/sync/driver/glue/sync_backend_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698