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

Side by Side Diff: third_party/WebKit/Source/core/inspector/ThreadDebugger.h

Issue 1650283002: DevTools: remove DOM and Bindings dependencies from inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: for landing Created 4 years, 10 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ThreadDebugger_h 5 #ifndef ThreadDebugger_h
6 #define ThreadDebugger_h 6 #define ThreadDebugger_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/inspector/v8/V8Debugger.h" 9 #include "core/inspector/v8/V8Debugger.h"
10 #include "core/inspector/v8/V8DebuggerClient.h" 10 #include "core/inspector/v8/V8DebuggerClient.h"
(...skipping 12 matching lines...) Expand all
23 ~ThreadDebugger() override; 23 ~ThreadDebugger() override;
24 24
25 // V8DebuggerClient implementation. 25 // V8DebuggerClient implementation.
26 void eventListeners(v8::Local<v8::Value>, EventListenerInfoMap&) override; 26 void eventListeners(v8::Local<v8::Value>, EventListenerInfoMap&) override;
27 v8::MaybeLocal<v8::Object> instantiateObject(v8::Local<v8::Function>) overri de; 27 v8::MaybeLocal<v8::Object> instantiateObject(v8::Local<v8::Function>) overri de;
28 v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::Context>, v8::Local<v 8::String>, const String& fileName) override; 28 v8::MaybeLocal<v8::Script> compileScript(v8::Local<v8::Context>, v8::Local<v 8::String>, const String& fileName) override;
29 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, v8::Loca l<v8::Script>) override; 29 v8::MaybeLocal<v8::Value> runCompiledScript(v8::Local<v8::Context>, v8::Loca l<v8::Script>) override;
30 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::String>) override; 30 v8::MaybeLocal<v8::Value> compileAndRunInternalScript(v8::Local<v8::String>) override;
31 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, v8::Local<v8 ::Context>, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[] ) override; 31 v8::MaybeLocal<v8::Value> callFunction(v8::Local<v8::Function>, v8::Local<v8 ::Context>, v8::Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[] ) override;
32 v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function>, v8:: Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[]) override; 32 v8::MaybeLocal<v8::Value> callInternalFunction(v8::Local<v8::Function>, v8:: Local<v8::Value> receiver, int argc, v8::Local<v8::Value> info[]) override;
33 String valueSubtype(v8::Local<v8::Value>) override;
34 bool formatAccessorsAsProperties(v8::Local<v8::Value>) override;
33 35
34 V8Debugger* debugger() const { return m_debugger.get(); } 36 V8Debugger* debugger() const { return m_debugger.get(); }
35 37
36 protected: 38 protected:
37 v8::Isolate* m_isolate; 39 v8::Isolate* m_isolate;
38 OwnPtr<V8Debugger> m_debugger; 40 OwnPtr<V8Debugger> m_debugger;
39 }; 41 };
40 42
41 } // namespace blink 43 } // namespace blink
42 44
43 #endif // ThreadDebugger_h 45 #endif // ThreadDebugger_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698