| Index: chrome/browser/debugger/remote_debugging_server.h
|
| diff --git a/chrome/browser/debugger/remote_debugging_server.h b/chrome/browser/debugger/remote_debugging_server.h
|
| index 9fdbae07e3f2bd5d66621df59d07a10680cc255d..225549d39179dcccbd5f22ed8e94c8db2735f638 100644
|
| --- a/chrome/browser/debugger/remote_debugging_server.h
|
| +++ b/chrome/browser/debugger/remote_debugging_server.h
|
| @@ -9,23 +9,24 @@
|
| #include <string>
|
|
|
| #include "base/basictypes.h"
|
| -#include "base/memory/ref_counted.h"
|
| -#include "content/browser/debugger/devtools_http_protocol_handler.h"
|
|
|
| -class DevToolsHttpProtocolHandler;
|
| class Profile;
|
|
|
| +namespace content {
|
| +class DevToolsHttpHandler;
|
| +}
|
| +
|
| class RemoteDebuggingServer {
|
| public:
|
| RemoteDebuggingServer(Profile* profile,
|
| - const std::string& ip,
|
| - int port,
|
| - const std::string& frontend_url);
|
| + const std::string& ip,
|
| + int port,
|
| + const std::string& frontend_url);
|
|
|
| virtual ~RemoteDebuggingServer();
|
|
|
| private:
|
| - scoped_refptr<DevToolsHttpProtocolHandler> devtools_http_handler_;
|
| + content::DevToolsHttpHandler* devtools_http_handler_;
|
| DISALLOW_COPY_AND_ASSIGN(RemoteDebuggingServer);
|
| };
|
|
|
|
|