Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1139)

Unified Diff: chrome/browser/debugger/remote_debugging_server.h

Issue 8554008: Add content API for DevTools HTTP handler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed unnecessary comment from the public interface Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
};
« no previous file with comments | « chrome/browser/debugger/browser_list_tabcontents_provider.cc ('k') | chrome/browser/debugger/remote_debugging_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698