| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| index b9fc3dbdcf05f4c358c3cbc6c596a1684782d267..66315486f285c3e9fe0bad93e4b931069b738d76 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| @@ -101,8 +101,8 @@ public:
|
| void setAsyncCallStackDepth(V8DebuggerAgentImpl*, int);
|
|
|
| v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Function>);
|
| + v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>, v8::Local<v8::Value>);
|
| v8::Local<v8::Value> generatorObjectDetails(v8::Local<v8::Object>&);
|
| - v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>&);
|
|
|
| v8::Isolate* isolate() const { return m_isolate; }
|
| V8DebuggerClient* client() { return m_client; }
|
| @@ -162,6 +162,8 @@ private:
|
|
|
| using ContextsByGroupMap = protocol::HashMap<int, std::unique_ptr<ContextByIdMap>>;
|
|
|
| + v8::Local<v8::Value> collectionEntries(v8::Local<v8::Context>, v8::Local<v8::Object>);
|
| +
|
| v8::Isolate* m_isolate;
|
| V8DebuggerClient* m_client;
|
| ContextsByGroupMap m_contexts;
|
|
|