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

Unified Diff: chrome/browser/browser_process_impl.cc

Issue 8635005: DevTools: remove support for legacy remote debugger (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed tests compilation Created 9 years, 1 month 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/browser_process_impl.h ('k') | chrome/browser/debugger/debugger_remote_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process_impl.cc
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc
index a6e637f1e41ac4de030ad5889ed7cd7bd0ccbbb6..27ccef71b21532bcdea751b2251c90c90b735bb5 100644
--- a/chrome/browser/browser_process_impl.cc
+++ b/chrome/browser/browser_process_impl.cc
@@ -23,7 +23,6 @@
#include "chrome/browser/chrome_plugin_service_filter.h"
#include "chrome/browser/component_updater/component_updater_configurator.h"
#include "chrome/browser/component_updater/component_updater_service.h"
-#include "chrome/browser/debugger/devtools_protocol_handler.h"
#include "chrome/browser/debugger/remote_debugging_server.h"
#include "chrome/browser/download/download_request_limiter.h"
#include "chrome/browser/extensions/extension_event_router_forwarder.h"
@@ -221,11 +220,6 @@ BrowserProcessImpl::~BrowserProcessImpl() {
// Debugger must be cleaned up before IO thread and NotificationService.
remote_debugging_server_.reset();
- if (devtools_legacy_handler_.get()) {
- devtools_legacy_handler_->Stop();
- devtools_legacy_handler_ = NULL;
- }
-
if (resource_dispatcher_host_.get()) {
// Cancel pending requests and prevent new requests.
resource_dispatcher_host()->Shutdown();
@@ -545,11 +539,6 @@ void BrowserProcessImpl::InitDevToolsHttpProtocolHandler(
new RemoteDebuggingServer(profile, ip, port, frontend_url));
}
-void BrowserProcessImpl::InitDevToolsLegacyProtocolHandler(int port) {
- DCHECK(CalledOnValidThread());
- devtools_legacy_handler_ = DevToolsProtocolHandler::Start(port);
-}
-
bool BrowserProcessImpl::IsShuttingDown() {
DCHECK(CalledOnValidThread());
return did_start_ && 0 == module_ref_count_;
« no previous file with comments | « chrome/browser/browser_process_impl.h ('k') | chrome/browser/debugger/debugger_remote_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698