| Index: extensions/browser/api/socket/tls_socket.h
|
| diff --git a/extensions/browser/api/socket/tls_socket.h b/extensions/browser/api/socket/tls_socket.h
|
| index d5669992cd51c5eddebf6af595729e0a1150c451..f0f9029d938d5ff3f20084230772876d30354c07 100644
|
| --- a/extensions/browser/api/socket/tls_socket.h
|
| +++ b/extensions/browser/api/socket/tls_socket.h
|
| @@ -46,7 +46,7 @@ class TLSSocket : public ResumableTCPSocket {
|
|
|
| // Fails.
|
| void Connect(const std::string& address,
|
| - int port,
|
| + uint16 port,
|
| const CompletionCallback& callback) override;
|
| // Forwards.
|
| void Disconnect() override;
|
| @@ -66,7 +66,7 @@ class TLSSocket : public ResumableTCPSocket {
|
|
|
| // Fails. TLSSocket is only a client.
|
| int Listen(const std::string& address,
|
| - int port,
|
| + uint16 port,
|
| int backlog,
|
| std::string* error_msg) override;
|
|
|
|
|