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

Unified Diff: net/tools/flip_server/mem_cache_test.cc

Issue 1893083002: Change scoped_ptr to std::unique_ptr in //net. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: scopedptr-net-all: iwyu 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 | « net/tools/flip_server/mem_cache.cc ('k') | net/tools/flip_server/ring_buffer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/mem_cache_test.cc
diff --git a/net/tools/flip_server/mem_cache_test.cc b/net/tools/flip_server/mem_cache_test.cc
index 87dca685bf23efbcf22b54d08ee32a692bb797ca..0ddb74bc90729df867962ad408443d33362e71a7 100644
--- a/net/tools/flip_server/mem_cache_test.cc
+++ b/net/tools/flip_server/mem_cache_test.cc
@@ -27,7 +27,7 @@ class FlipMemoryCacheTest : public ::testing::Test {
FlipMemoryCacheTest() : mem_cache_(new MemoryCacheWithFakeReadToString) {}
protected:
- scoped_ptr<MemoryCacheWithFakeReadToString> mem_cache_;
+ std::unique_ptr<MemoryCacheWithFakeReadToString> mem_cache_;
};
TEST_F(FlipMemoryCacheTest, EmptyCache) {
« no previous file with comments | « net/tools/flip_server/mem_cache.cc ('k') | net/tools/flip_server/ring_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698