| Index: chrome/browser/chrome_browser_main.cc
|
| diff --git a/chrome/browser/chrome_browser_main.cc b/chrome/browser/chrome_browser_main.cc
|
| index e4f88c5bdf463f55b6e3e3be3a09da8a6ef012c1..1b89fecd04f9033077fbd0a0afc099c0576831fb 100644
|
| --- a/chrome/browser/chrome_browser_main.cc
|
| +++ b/chrome/browser/chrome_browser_main.cc
|
| @@ -541,9 +541,7 @@ void LaunchDevToolsHandlerIfNeeded(const base::CommandLine& command_line) {
|
| int port;
|
| if (base::StringToInt(port_str, &port) && port >= 0 && port < 65535) {
|
| g_browser_process->CreateDevToolsHttpProtocolHandler(
|
| - chrome::HOST_DESKTOP_TYPE_NATIVE,
|
| - "127.0.0.1",
|
| - static_cast<uint16>(port));
|
| + ui::HOST_DESKTOP_TYPE_NATIVE, "127.0.0.1", static_cast<uint16>(port));
|
| } else {
|
| DLOG(WARNING) << "Invalid http debugger port number " << port;
|
| }
|
|
|