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

Unified Diff: ppapi/proxy/udp_socket_filter.h

Issue 1864293002: Convert //ppapi to use 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: ppapi/proxy/udp_socket_filter.h
diff --git a/ppapi/proxy/udp_socket_filter.h b/ppapi/proxy/udp_socket_filter.h
index 4aa3e5cde83b23d4f0fca63834b011043d1b04b4..da9ed0b76337b2ea7972fa1b9099a9fabc85e84d 100644
--- a/ppapi/proxy/udp_socket_filter.h
+++ b/ppapi/proxy/udp_socket_filter.h
@@ -130,7 +130,7 @@ class PPAPI_PROXY_EXPORT UDPSocketFilter : public ResourceMessageFilter {
// 1 ppapi::ProxyLock
// \-->2 Filter lock_
mutable base::Lock lock_;
- base::ScopedPtrHashMap<PP_Resource, scoped_ptr<RecvQueue>> queues_;
+ base::ScopedPtrHashMap<PP_Resource, std::unique_ptr<RecvQueue>> queues_;
};
} // namespace proxy

Powered by Google App Engine
This is Rietveld 408576698