Index: content/public/browser/devtools_http_handler_delegate.h |
diff --git a/content/public/browser/devtools_http_handler_delegate.h b/content/public/browser/devtools_http_handler_delegate.h |
index 4476a17bd55039b055dd63b1807ba373f735b87c..3e1d6412820eb17923b1b366d2b8eb33d1b42c1c 100644 |
--- a/content/public/browser/devtools_http_handler_delegate.h |
+++ b/content/public/browser/devtools_http_handler_delegate.h |
@@ -9,7 +9,7 @@ |
#include <vector> |
#include "base/files/file_path.h" |
-#include "base/memory/ref_counted.h" |
+#include "base/memory/scoped_ptr.h" |
#include "net/socket/stream_listen_socket.h" |
class GURL; |
@@ -52,7 +52,7 @@ class DevToolsHttpHandlerDelegate { |
// Creates named socket for reversed tethering implementation (used with |
// remote debugging, primarily for mobile). |
- virtual scoped_refptr<net::StreamListenSocket> CreateSocketForTethering( |
+ virtual scoped_ptr<net::StreamListenSocket> CreateSocketForTethering( |
net::StreamListenSocket::Delegate* delegate, |
std::string* name) = 0; |
}; |