Index: third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
index ecdaf0799b4c4efd9460fc8ddf6598c864b42346..841c9b459f818755922e9ed9b55a2d378c4c17de 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8Debugger.h |
@@ -74,7 +74,6 @@ public: |
std::unique_ptr<V8StackTraceImpl> createStackTrace(v8::Local<v8::StackTrace>); |
std::unique_ptr<V8StackTraceImpl> captureStackTrace(bool fullStack); |
- v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Function>); |
v8::MaybeLocal<v8::Array> internalProperties(v8::Local<v8::Context>, v8::Local<v8::Value>); |
void asyncTaskScheduled(const String16& taskName, void* task, bool recurring); |
@@ -100,8 +99,9 @@ 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::Context>, v8::Local<v8::Object>); |
- v8::Local<v8::Value> generatorObjectLocation(v8::Local<v8::Object>); |
+ v8::Local<v8::Value> generatorObjectLocation(v8::Local<v8::Context>, v8::Local<v8::Object>); |
v8::Local<v8::Value> functionLocation(v8::Local<v8::Context>, v8::Local<v8::Function>); |
+ v8::MaybeLocal<v8::Value> functionScopes(v8::Local<v8::Context>, v8::Local<v8::Function>); |
v8::Isolate* m_isolate; |
V8InspectorImpl* m_inspector; |