blob: 1a29566fe8d4ce36cae073cb58afe7728e41b7f2 (
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
|
// 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 this file if you need to access the Debugger outside of the debugger
// project. Don't include debugger.h directly. If there's functionality from
// Debugger needed, add new wrapper methods to this file.
#ifndef CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
#define CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
#include <string>
#include "base/basictypes.h"
#include "base/ref_counted.h"
class DebuggerHost;
class DevToolsProtocolHandler;
class DevToolsRemoteListenSocket;
class DebuggerWrapper : public base::RefCountedThreadSafe<DebuggerWrapper> {
public:
explicit DebuggerWrapper(int port);
virtual ~DebuggerWrapper();
private:
scoped_refptr<DevToolsProtocolHandler> proto_handler_;
};
#endif // CHROME_BROWSER_DEBUGGER_DEBUGGER_WRAPPER_H_
|