| 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 a8e7637f303e259cb9701854583c27f775138862..dba65b88f4055717753c065e18a72d25591dd775 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.h
|
| @@ -98,8 +98,8 @@ public:
|
| void setAsyncCallStackDepth(V8DebuggerAgentImpl*, int);
|
|
|
| v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Function>);
|
| + v8::MaybeLocal<v8::Array> internalProperties(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; }
|
| @@ -156,6 +156,8 @@ private:
|
|
|
| void handleV8AsyncTaskEvent(v8::Local<v8::Context>, v8::Local<v8::Object> executionState, v8::Local<v8::Object> eventData);
|
|
|
| + v8::Local<v8::Value> collectionEntries(v8::Local<v8::Object>);
|
| +
|
| v8::Isolate* m_isolate;
|
| V8DebuggerClient* m_client;
|
| using ContextsByGroupMap = protocol::HashMap<int, std::unique_ptr<ContextByIdMap>>;
|
|
|