Chromium Code Reviews| 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..0cc6b9f26141aa51e5765e5898e638460a12dc75 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; |
| }; |
| +typedef Vector<OwnPtr<JavaScriptCallFrame>> JavaScriptCallFrames; |
|
dgozman
2016/03/26 02:20:23
style: using Type = Definition;
kozy
2016/03/26 02:22:14
Done.
|
| + |
| } // namespace blink |
| #endif // JavaScriptCallFrame_h |