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

Unified Diff: extensions/browser/api/sockets_tcp/sockets_tcp_api.h

Issue 1902873002: Convert //extensions/browser/api 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
« no previous file with comments | « extensions/browser/api/socket/tls_socket.cc ('k') | extensions/browser/api/sockets_tcp/sockets_tcp_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/sockets_tcp/sockets_tcp_api.h
diff --git a/extensions/browser/api/sockets_tcp/sockets_tcp_api.h b/extensions/browser/api/sockets_tcp/sockets_tcp_api.h
index bbea8f4c3dcf8d4669cb51702c289d0949d9c2cc..c4b3ee883c60702ee7ad4cbc3dac87c1f952523e 100644
--- a/extensions/browser/api/sockets_tcp/sockets_tcp_api.h
+++ b/extensions/browser/api/sockets_tcp/sockets_tcp_api.h
@@ -26,7 +26,7 @@ class TCPSocketAsyncApiFunction : public SocketAsyncApiFunction {
protected:
~TCPSocketAsyncApiFunction() override;
- scoped_ptr<SocketResourceManagerInterface> CreateSocketResourceManager()
+ std::unique_ptr<SocketResourceManagerInterface> CreateSocketResourceManager()
override;
ResumableTCPSocket* GetTcpSocket(int socket_id);
@@ -37,7 +37,7 @@ class TCPSocketExtensionWithDnsLookupFunction
protected:
~TCPSocketExtensionWithDnsLookupFunction() override;
- scoped_ptr<SocketResourceManagerInterface> CreateSocketResourceManager()
+ std::unique_ptr<SocketResourceManagerInterface> CreateSocketResourceManager()
override;
ResumableTCPSocket* GetTcpSocket(int socket_id);
@@ -58,7 +58,7 @@ class SocketsTcpCreateFunction : public TCPSocketAsyncApiFunction {
private:
FRIEND_TEST_ALL_PREFIXES(SocketsTcpUnitTest, Create);
- scoped_ptr<sockets_tcp::Create::Params> params_;
+ std::unique_ptr<sockets_tcp::Create::Params> params_;
};
class SocketsTcpUpdateFunction : public TCPSocketAsyncApiFunction {
@@ -75,7 +75,7 @@ class SocketsTcpUpdateFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::Update::Params> params_;
+ std::unique_ptr<sockets_tcp::Update::Params> params_;
};
class SocketsTcpSetPausedFunction : public TCPSocketAsyncApiFunction {
@@ -92,7 +92,7 @@ class SocketsTcpSetPausedFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::SetPaused::Params> params_;
+ std::unique_ptr<sockets_tcp::SetPaused::Params> params_;
TCPSocketEventDispatcher* socket_event_dispatcher_;
};
@@ -111,7 +111,7 @@ class SocketsTcpSetKeepAliveFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::SetKeepAlive::Params> params_;
+ std::unique_ptr<sockets_tcp::SetKeepAlive::Params> params_;
};
class SocketsTcpSetNoDelayFunction : public TCPSocketAsyncApiFunction {
@@ -128,7 +128,7 @@ class SocketsTcpSetNoDelayFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::SetNoDelay::Params> params_;
+ std::unique_ptr<sockets_tcp::SetNoDelay::Params> params_;
};
class SocketsTcpConnectFunction
@@ -152,7 +152,7 @@ class SocketsTcpConnectFunction
void StartConnect();
void OnCompleted(int net_result);
- scoped_ptr<sockets_tcp::Connect::Params> params_;
+ std::unique_ptr<sockets_tcp::Connect::Params> params_;
TCPSocketEventDispatcher* socket_event_dispatcher_;
};
@@ -170,7 +170,7 @@ class SocketsTcpDisconnectFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::Disconnect::Params> params_;
+ std::unique_ptr<sockets_tcp::Disconnect::Params> params_;
};
class SocketsTcpSendFunction : public TCPSocketAsyncApiFunction {
@@ -190,7 +190,7 @@ class SocketsTcpSendFunction : public TCPSocketAsyncApiFunction {
void OnCompleted(int net_result);
void SetSendResult(int net_result, int bytes_sent);
- scoped_ptr<sockets_tcp::Send::Params> params_;
+ std::unique_ptr<sockets_tcp::Send::Params> params_;
scoped_refptr<net::IOBuffer> io_buffer_;
size_t io_buffer_size_;
};
@@ -209,7 +209,7 @@ class SocketsTcpCloseFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::Close::Params> params_;
+ std::unique_ptr<sockets_tcp::Close::Params> params_;
};
class SocketsTcpGetInfoFunction : public TCPSocketAsyncApiFunction {
@@ -226,7 +226,7 @@ class SocketsTcpGetInfoFunction : public TCPSocketAsyncApiFunction {
void Work() override;
private:
- scoped_ptr<sockets_tcp::GetInfo::Params> params_;
+ std::unique_ptr<sockets_tcp::GetInfo::Params> params_;
};
class SocketsTcpGetSocketsFunction : public TCPSocketAsyncApiFunction {
@@ -255,12 +255,12 @@ class SocketsTcpSecureFunction : public TCPSocketAsyncApiFunction {
void AsyncWorkStart() override;
private:
- virtual void TlsConnectDone(scoped_ptr<extensions::TLSSocket> sock,
+ virtual void TlsConnectDone(std::unique_ptr<extensions::TLSSocket> sock,
int result);
bool paused_;
bool persistent_;
- scoped_ptr<sockets_tcp::Secure::Params> params_;
+ std::unique_ptr<sockets_tcp::Secure::Params> params_;
scoped_refptr<net::URLRequestContextGetter> url_request_getter_;
DISALLOW_COPY_AND_ASSIGN(SocketsTcpSecureFunction);
« no previous file with comments | « extensions/browser/api/socket/tls_socket.cc ('k') | extensions/browser/api/sockets_tcp/sockets_tcp_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698