| Index: content/browser/devtools/devtools_http_handler_impl.h
|
| diff --git a/content/browser/devtools/devtools_http_handler_impl.h b/content/browser/devtools/devtools_http_handler_impl.h
|
| index e861ea6d82f6a9623cabfe599f259b765a631ef2..aa6dfc391ee596f2f039b29faa37274a903715a5 100644
|
| --- a/content/browser/devtools/devtools_http_handler_impl.h
|
| +++ b/content/browser/devtools/devtools_http_handler_impl.h
|
| @@ -84,6 +84,9 @@ class DevToolsHttpHandlerImpl
|
| const std::string& host,
|
| const DevToolsManagerDelegate::TargetList& targets);
|
|
|
| + void OnHttpServerInitialized(const net::IPEndPoint& ip_address);
|
| + void OnHttpServerDeinitialized();
|
| +
|
| DevToolsTarget* GetTarget(const std::string& id);
|
|
|
| void Init();
|
| @@ -121,6 +124,7 @@ class DevToolsHttpHandlerImpl
|
| std::string frontend_url_;
|
| const scoped_ptr<ServerSocketFactory> server_socket_factory_;
|
| scoped_ptr<net::HttpServer> server_;
|
| + scoped_ptr<net::IPEndPoint> server_ip_address_;
|
| typedef std::map<int, DevToolsAgentHostClient*> ConnectionToClientMap;
|
| ConnectionToClientMap connection_to_client_ui_;
|
| const scoped_ptr<DevToolsHttpHandlerDelegate> delegate_;
|
|
|