| 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..9a0b4b92e6828fec93430da6f6805726ab5507ff 100644
|
| --- a/chrome/browser/devtools/remote_debugging_server.cc
|
| +++ b/chrome/browser/devtools/remote_debugging_server.cc
|
| @@ -47,13 +47,12 @@ RemoteDebuggingServer::RemoteDebuggingServer(
|
|
|
| scoped_ptr<content::DevToolsHttpHandler::ServerSocketFactory> factory(
|
| new TCPServerSocketFactory(ip, port, 1));
|
| - devtools_http_handler_ = content::DevToolsHttpHandler::Start(
|
| + devtools_http_handler_.reset(content::DevToolsHttpHandler::Start(
|
| factory.Pass(),
|
| "",
|
| new BrowserListTabContentsProvider(host_desktop_type),
|
| - output_dir);
|
| + output_dir));
|
| }
|
|
|
| RemoteDebuggingServer::~RemoteDebuggingServer() {
|
| - devtools_http_handler_->Stop();
|
| }
|
|
|