OLD | NEW |
| (Empty) |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef ScriptDebuggerBase_h | |
6 #define ScriptDebuggerBase_h | |
7 | |
8 #include "core/CoreExport.h" | |
9 #include "core/inspector/v8/V8Debugger.h" | |
10 #include "core/inspector/v8/V8DebuggerClient.h" | |
11 | |
12 namespace blink { | |
13 | |
14 class CORE_EXPORT ScriptDebuggerBase : public V8DebuggerClient { | |
15 WTF_MAKE_NONCOPYABLE(ScriptDebuggerBase); | |
16 public: | |
17 ScriptDebuggerBase(v8::Isolate*); | |
18 ~ScriptDebuggerBase() override; | |
19 v8::Local<v8::Object> compileDebuggerScript() override; | |
20 V8Debugger* debugger() const { return m_debugger.get(); } | |
21 | |
22 private: | |
23 v8::Isolate* m_isolate; | |
24 OwnPtr<V8Debugger> m_debugger; | |
25 }; | |
26 | |
27 } // namespace blink | |
28 | |
29 | |
30 #endif // !defined(ScriptDebuggerBase_h) | |
OLD | NEW |