| Index: chrome/browser/devtools/remote_debugging_server.cc
|
| diff --git a/chrome/browser/devtools/remote_debugging_server.cc b/chrome/browser/devtools/remote_debugging_server.cc
|
| index 3c7fd595063e3ef9b5336228862cfea7950e3ca0..06288106b91733af2e103cec0ee7045f9abfd024 100644
|
| --- a/chrome/browser/devtools/remote_debugging_server.cc
|
| +++ b/chrome/browser/devtools/remote_debugging_server.cc
|
| @@ -16,7 +16,7 @@ namespace {
|
| class TCPServerSocketFactory
|
| : public content::DevToolsHttpHandler::ServerSocketFactory {
|
| public:
|
| - TCPServerSocketFactory(const std::string& address, int port, int backlog)
|
| + TCPServerSocketFactory(const std::string& address, uint16 port, int backlog)
|
| : content::DevToolsHttpHandler::ServerSocketFactory(
|
| address, port, backlog) {}
|
|
|
| @@ -35,7 +35,7 @@ class TCPServerSocketFactory
|
| RemoteDebuggingServer::RemoteDebuggingServer(
|
| chrome::HostDesktopType host_desktop_type,
|
| const std::string& ip,
|
| - int port) {
|
| + uint16 port) {
|
| base::FilePath output_dir;
|
| if (!port) {
|
| // The client requested an ephemeral port. Must write the selected
|
|
|