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

Unified Diff: sync/internal_api/public/test/null_sync_context_proxy.h

Issue 1866243002: Convert //sync from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: sync/internal_api/public/test/null_sync_context_proxy.h
diff --git a/sync/internal_api/public/test/null_sync_context_proxy.h b/sync/internal_api/public/test/null_sync_context_proxy.h
index aae38e9e6a9aa5b9441d6682d5f762babc62e108..800acb3f20b0320ea41800bf44f70c5fdadf85c2 100644
--- a/sync/internal_api/public/test/null_sync_context_proxy.h
+++ b/sync/internal_api/public/test/null_sync_context_proxy.h
@@ -19,9 +19,9 @@ class NullSyncContextProxy : public SyncContextProxy {
void ConnectTypeToSync(
syncer::ModelType type,
- scoped_ptr<ActivationContext> activation_context) override;
+ std::unique_ptr<ActivationContext> activation_context) override;
void Disconnect(syncer::ModelType type) override;
- scoped_ptr<SyncContextProxy> Clone() const override;
+ std::unique_ptr<SyncContextProxy> Clone() const override;
};
} // namespace syncer_v2

Powered by Google App Engine
This is Rietveld 408576698