| Index: third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| index f4f8eba399fa5617821b91e4cc5aba3e89f4e84f..e75feddd5ac839acf07a8cd30b65ba99fb3f0db8 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| @@ -62,18 +62,12 @@ public:
|
| v8::Local<v8::Value> scopeStartLocation(int scopeIndex) const;
|
| v8::Local<v8::Value> scopeEndLocation(int scopeIndex) const;
|
| v8::Local<v8::Value> thisObject() const;
|
| - String16 stepInPositions() const;
|
| bool isAtReturn() const;
|
| v8::Local<v8::Value> returnValue() const;
|
|
|
| v8::MaybeLocal<v8::Value> evaluate(v8::Local<v8::Value> expression);
|
| v8::MaybeLocal<v8::Value> restart();
|
| v8::MaybeLocal<v8::Value> setVariableValue(int scopeNumber, v8::Local<v8::Value> variableName, v8::Local<v8::Value> newValue);
|
| -
|
| - // FIXME: store this template in per isolate data
|
| - void setWrapperTemplate(v8::Local<v8::FunctionTemplate> wrapperTemplate, v8::Isolate* isolate) { m_wrapperTemplate.Reset(isolate, wrapperTemplate); }
|
| - v8::Local<v8::FunctionTemplate> wrapperTemplate(v8::Isolate* isolate) { return v8::Local<v8::FunctionTemplate>::New(isolate, m_wrapperTemplate); }
|
| -
|
| private:
|
| JavaScriptCallFrame(v8::Local<v8::Context> debuggerContext, v8::Local<v8::Object> callFrame);
|
|
|
|
|