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

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: rebased 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..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

Powered by Google App Engine
This is Rietveld 408576698