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

Unified Diff: content/test/test_background_sync_context_impl.cc

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent 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
« no previous file with comments | « content/test/test_background_sync_context_impl.h ('k') | content/test/test_background_sync_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_background_sync_context_impl.cc
diff --git a/content/test/test_background_sync_context_impl.cc b/content/test/test_background_sync_context_impl.cc
index 97026d3625399ec956acf3857cdb5645a6f1fc8b..08b5a6003e4f501dfe1a56a91c84ddee1a84c7af 100644
--- a/content/test/test_background_sync_context_impl.cc
+++ b/content/test/test_background_sync_context_impl.cc
@@ -4,6 +4,7 @@
#include "content/test/test_background_sync_context_impl.h"
+#include "base/memory/ptr_util.h"
#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/public/browser/browser_thread.h"
#include "content/test/test_background_sync_manager.h"
@@ -17,7 +18,7 @@ void TestBackgroundSyncContextImpl::CreateBackgroundSyncManager(
TestBackgroundSyncManager* manager = new TestBackgroundSyncManager(context);
set_background_sync_manager_for_testing(
- make_scoped_ptr<BackgroundSyncManager>(manager));
+ base::WrapUnique<BackgroundSyncManager>(manager));
}
} // namespace content
« no previous file with comments | « content/test/test_background_sync_context_impl.h ('k') | content/test/test_background_sync_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698