summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h')
-rw-r--r--third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h b/third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h
index 46e6aab..f89576a 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