Chromium Code Reviews| Index: src/inspector/v8-debugger-agent-impl.h |
| diff --git a/src/inspector/v8-debugger-agent-impl.h b/src/inspector/v8-debugger-agent-impl.h |
| index 4e8e336545631d344534410089666c6e45b53d1b..46e467491701a214ca1b2b75d0a85c816d85f568 100644 |
| --- a/src/inspector/v8-debugger-agent-impl.h |
| +++ b/src/inspector/v8-debugger-agent-impl.h |
| @@ -11,6 +11,7 @@ |
| #include "src/inspector/java-script-call-frame.h" |
| #include "src/inspector/protocol/Debugger.h" |
| #include "src/inspector/protocol/Forward.h" |
| +#include "src/inspector/wasm-translation.h" |
| namespace v8_inspector { |
| @@ -142,6 +143,9 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend { |
| void didParseSource(std::unique_ptr<V8DebuggerScript>, bool success); |
| void willExecuteScript(int scriptId); |
| void didExecuteScript(); |
| + void newWasmScript(v8::Local<v8::Object> scriptWrapper); |
| + |
| + WasmTranslation* wasmTranslation() { return &m_wasmTranslation; } |
|
dgozman
2016/11/16 19:00:10
WasmTranslation should be a part of V8Debugger cla
Clemens Hammacher
2016/11/16 20:31:30
Done.
|
| v8::Isolate* isolate() { return m_isolate; } |
| @@ -215,6 +219,8 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend { |
| protocol::HashMap<String16, std::vector<std::pair<int, int>>> |
| m_blackboxedPositions; |
| + WasmTranslation m_wasmTranslation; |
| + |
| DISALLOW_COPY_AND_ASSIGN(V8DebuggerAgentImpl); |
| }; |