| 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 46e6aab9553f9865b22245f2edc20aef271ad78a..f89576ad1d87a90e855aa25d4a5ad01c68042989 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
|
| @@ -46,8 +46,6 @@ public:
|
| }
|
| ~JavaScriptCallFrame();
|
|
|
| - PassOwnPtr<JavaScriptCallFrame> caller();
|
| -
|
| int sourceID() const;
|
| int line() const;
|
| int column() const;
|
| @@ -70,6 +68,8 @@ private:
|
| v8::Global<v8::FunctionTemplate> m_wrapperTemplate;
|
| };
|
|
|
| +using JavaScriptCallFrames = Vector<OwnPtr<JavaScriptCallFrame>>;
|
| +
|
| } // namespace blink
|
|
|
| #endif // JavaScriptCallFrame_h
|
|
|