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 cdceff8dfd4d8f531a5cb0db0cbc3479810aa817..8cb359cbac85f73295b2d807e4bd75ccae79f35f 100644 |
--- a/content/public/browser/devtools_http_handler.h |
+++ b/content/public/browser/devtools_http_handler.h |
@@ -8,12 +8,13 @@ |
#include <string> |
#include "base/files/file_path.h" |
+#include "base/memory/scoped_ptr.h" |
#include "content/common/content_export.h" |
class GURL; |
namespace net { |
-class StreamListenSocketFactory; |
+class ServerSocketFactory; |
class URLRequestContextGetter; |
} |
@@ -40,7 +41,7 @@ class DevToolsHttpHandler { |
// port selected by the OS will be written to a well-known file in |
// the output directory. |
CONTENT_EXPORT static DevToolsHttpHandler* Start( |
- const net::StreamListenSocketFactory* socket_factory, |
+ scoped_ptr<net::ServerSocketFactory> server_socket_factory, |
const std::string& frontend_url, |
DevToolsHttpHandlerDelegate* delegate, |
const base::FilePath& active_port_output_directory); |