Index: content/public/browser/devtools_http_handler.h |
diff --git a/content/public/browser/devtools_http_handler.h b/content/public/browser/devtools_http_handler.h |
index 44c507286ae1f803738b1ce1e82274ea590e892a..01a97fac3e775b69f7e66d52dab9bca39dabcd76 100644 |
--- a/content/public/browser/devtools_http_handler.h |
+++ b/content/public/browser/devtools_http_handler.h |
@@ -32,7 +32,7 @@ class DevToolsHttpHandler { |
// and instantiating server socket. |
class CONTENT_EXPORT ServerSocketFactory { |
public: |
- ServerSocketFactory(const std::string& address, int port, int backlog); |
+ ServerSocketFactory(const std::string& address, uint16 port, int backlog); |
virtual ~ServerSocketFactory(); |
// Returns a new instance of ServerSocket or NULL if an error occurred. |
@@ -46,7 +46,7 @@ class DevToolsHttpHandler { |
virtual scoped_ptr<net::ServerSocket> Create() const = 0; |
const std::string address_; |
- const int port_; |
+ const uint16 port_; |
const int backlog_; |
private: |