| 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 4af55059da954deb9ccae07087624164aab39a56..944f6244ba8fa10a6b172d20a85c5d9ffa824091 100644
|
| --- a/content/public/browser/devtools_http_handler.h
|
| +++ b/content/public/browser/devtools_http_handler.h
|
| @@ -7,12 +7,13 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/memory/scoped_ptr.h"
|
| #include "content/common/content_export.h"
|
|
|
| class GURL;
|
|
|
| namespace net {
|
| -class StreamListenSocketFactory;
|
| +class ServerSocket;
|
| class URLRequestContextGetter;
|
| }
|
|
|
| @@ -35,7 +36,7 @@ class DevToolsHttpHandler {
|
|
|
| // Takes ownership over |socket_factory| and |delegate|.
|
| CONTENT_EXPORT static DevToolsHttpHandler* Start(
|
| - const net::StreamListenSocketFactory* socket_factory,
|
| + scoped_ptr<net::ServerSocket> server_socket,
|
| const std::string& frontend_url,
|
| DevToolsHttpHandlerDelegate* delegate);
|
|
|
|
|