summaryrefslogtreecommitdiffstats
path: root/chrome/browser/debugger/debugger_wrapper.cc
blob: 644bf052cfe0d09f6f1cf3acdcb31ac4f867eb7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// Copyright (c) 2006-2008 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/debugger_wrapper.h"

#include "chrome/browser/debugger/devtools_http_protocol_handler.h"
#include "chrome/browser/debugger/debugger_remote_service.h"
#include "chrome/browser/debugger/devtools_protocol_handler.h"
#include "chrome/browser/debugger/devtools_remote_service.h"
#include "chrome/browser/debugger/extension_ports_remote_service.h"

DebuggerWrapper::DebuggerWrapper(int port, bool useHttp) {
  if (port > 0) {
    if (useHttp) {
      http_handler_ = new DevToolsHttpProtocolHandler(port);
      http_handler_->Start();
    } else {
      proto_handler_ = new DevToolsProtocolHandler(port);
      proto_handler_->RegisterDestination(
          new DevToolsRemoteService(proto_handler_),
          DevToolsRemoteService::kToolName);
      proto_handler_->RegisterDestination(
          new DebuggerRemoteService(proto_handler_),
          DebuggerRemoteService::kToolName);
      proto_handler_->RegisterDestination(
          new ExtensionPortsRemoteService(proto_handler_),
          ExtensionPortsRemoteService::kToolName);
      proto_handler_->Start();
    }
  }
}

DebuggerWrapper::~DebuggerWrapper() {
  if (proto_handler_.get() != NULL)
    proto_handler_->Stop();

  if (http_handler_.get() != NULL)
    http_handler_->Stop();
}