Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1084)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/JavaScriptCallFrame.h

Issue 1838683002: [DevTools] Debugger::currentCallFrames returns array instead linked list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@wrap-with-corrrect-injected-script
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698