summaryrefslogtreecommitdiffstats
path: root/chrome/browser/devtools/remote_debugging_server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/devtools/remote_debugging_server.cc')
-rw-r--r--chrome/browser/devtools/remote_debugging_server.cc27
1 files changed, 27 insertions, 0 deletions
diff --git a/chrome/browser/devtools/remote_debugging_server.cc b/chrome/browser/devtools/remote_debugging_server.cc
new file mode 100644
index 0000000..2d05199
--- /dev/null
+++ b/chrome/browser/devtools/remote_debugging_server.cc
@@ -0,0 +1,27 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/devtools/remote_debugging_server.h"
+
+#include "chrome/browser/devtools/browser_list_tabcontents_provider.h"
+#include "chrome/browser/ui/webui/devtools_ui.h"
+#include "content/public/browser/devtools_http_handler.h"
+#include "net/base/tcp_listen_socket.h"
+
+RemoteDebuggingServer::RemoteDebuggingServer(Profile* profile,
+ const std::string& ip,
+ int port,
+ const std::string& frontend_url) {
+ // Initialize DevTools data source.
+ DevToolsUI::RegisterDevToolsDataSource(profile);
+
+ devtools_http_handler_ = content::DevToolsHttpHandler::Start(
+ new net::TCPListenSocketFactory(ip, port),
+ frontend_url,
+ new BrowserListTabContentsProvider(profile));
+}
+
+RemoteDebuggingServer::~RemoteDebuggingServer() {
+ devtools_http_handler_->Stop();
+}