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

Unified Diff: components/sync_driver/fake_sync_client.h

Issue 1907683003: Convert //components/sync_driver 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: components/sync_driver/fake_sync_client.h
diff --git a/components/sync_driver/fake_sync_client.h b/components/sync_driver/fake_sync_client.h
index 69e71664ab38d5e526ca5436caeb435fd279a8bd..b56e3946da3dc748573a2ef50a27720f4d07f62e 100644
--- a/components/sync_driver/fake_sync_client.h
+++ b/components/sync_driver/fake_sync_client.h
@@ -44,7 +44,7 @@ class FakeSyncClient : public SyncClient {
private:
SyncApiComponentFactory* factory_;
- scoped_ptr<FakeSyncService> sync_service_;
+ std::unique_ptr<FakeSyncService> sync_service_;
pavely 2016/04/21 17:53:23 Could you add #include <memory> in this file?
dcheng 2016/04/21 18:30:02 Done.
DISALLOW_COPY_AND_ASSIGN(FakeSyncClient);
};

Powered by Google App Engine
This is Rietveld 408576698