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

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

Issue 11630004: DevTools: rename debugger/ to devtools/, move DevTools files into content/renderer/devtools. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: For landing Created 8 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
« no previous file with comments | « chrome/browser/debugger/remote_debugging_server.h ('k') | chrome/browser/devtools/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/debugger/remote_debugging_server.cc
diff --git a/chrome/browser/debugger/remote_debugging_server.cc b/chrome/browser/debugger/remote_debugging_server.cc
deleted file mode 100644
index b951206c9fac3701380e1cd61f13a092708dd8e5..0000000000000000000000000000000000000000
--- a/chrome/browser/debugger/remote_debugging_server.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-// 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/debugger/remote_debugging_server.h"
-
-#include "chrome/browser/debugger/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();
-}
« no previous file with comments | « chrome/browser/debugger/remote_debugging_server.h ('k') | chrome/browser/devtools/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698