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

Unified Diff: sync/internal_api/public/test/model_type_store_test_util.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/model_type_store_test_util.h
diff --git a/sync/internal_api/public/test/model_type_store_test_util.h b/sync/internal_api/public/test/model_type_store_test_util.h
index c05f99615dac324b26bc48237658657a0b8919d4..a5b38181aabb2f3a66343bc4b96fd3f67c9444e5 100644
--- a/sync/internal_api/public/test/model_type_store_test_util.h
+++ b/sync/internal_api/public/test/model_type_store_test_util.h
@@ -5,7 +5,8 @@
#ifndef SYNC_INTERNAL_API_PUBLIC_TEST_MODEL_TYPE_STORE_TEST_UTIL_H_
#define SYNC_INTERNAL_API_PUBLIC_TEST_MODEL_TYPE_STORE_TEST_UTIL_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
+
#include "sync/api/model_type_store.h"
namespace syncer_v2 {
@@ -16,11 +17,11 @@ class ModelTypeStoreTestUtil {
public:
// Creates an in memory store syncronously. Be aware that to do this all
// outstanding tasks will be run as the current message loop is pumped.
- static scoped_ptr<ModelTypeStore> CreateInMemoryStoreForTest();
+ static std::unique_ptr<ModelTypeStore> CreateInMemoryStoreForTest();
// Can be curried with an owned store object to allow passing an already
// created store to a service constructor in a unit test.
- static void MoveStoreToCallback(scoped_ptr<ModelTypeStore> store,
+ static void MoveStoreToCallback(std::unique_ptr<ModelTypeStore> store,
const ModelTypeStore::InitCallback& callback);
};

Powered by Google App Engine
This is Rietveld 408576698