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

Unified Diff: net/tools/quic/quic_time_wait_list_manager.cc

Issue 1901723002: Cleanup: Remove references to and unneeded includes of "base/scoped_ptr.h". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@119917706
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
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/spdy_balsa_utils.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_time_wait_list_manager.cc
diff --git a/net/tools/quic/quic_time_wait_list_manager.cc b/net/tools/quic/quic_time_wait_list_manager.cc
index 91c48d089b0882c338fb58d00d27f9c9e069af8d..38badb1701941db88798bcaec174c45defe6a375 100644
--- a/net/tools/quic/quic_time_wait_list_manager.cc
+++ b/net/tools/quic/quic_time_wait_list_manager.cc
@@ -5,10 +5,10 @@
#include "net/tools/quic/quic_time_wait_list_manager.h"
#include <errno.h>
+#include <memory>
#include "base/logging.h"
#include "base/macros.h"
-#include "base/memory/scoped_ptr.h"
#include "base/stl_util.h"
#include "net/base/ip_endpoint.h"
#include "net/quic/crypto/crypto_protocol.h"
@@ -68,7 +68,7 @@ class QuicTimeWaitListManager::QueuedPacket {
private:
const IPEndPoint server_address_;
const IPEndPoint client_address_;
- scoped_ptr<QuicEncryptedPacket> packet_;
+ std::unique_ptr<QuicEncryptedPacket> packet_;
DISALLOW_COPY_AND_ASSIGN(QueuedPacket);
};
« no previous file with comments | « net/tools/quic/quic_spdy_client_stream_test.cc ('k') | net/tools/quic/spdy_balsa_utils.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698