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

Unified Diff: src/frames.h

Issue 2629113004: Revert of [runtime] Change JavaScriptFrame::GetFunctions interface. (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « src/accessors.cc ('k') | src/frames.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.h
diff --git a/src/frames.h b/src/frames.h
index a8fd43e5bac76b97d8ff9203378666f4d6418999..a51afbb8e5e8fef9012cfc2d772e37d50f139474 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -897,8 +897,8 @@
// Determine the code for the frame.
Code* unchecked_code() const override;
- // Return a list with {SharedFunctionInfo} objects of this frame.
- virtual void GetFunctions(List<SharedFunctionInfo*>* functions) const;
+ // Return a list with JSFunctions of this frame.
+ virtual void GetFunctions(List<JSFunction*>* functions) const;
// Lookup exception handler for current {pc}, returns -1 if none found. Also
// returns data associated with the handler site specific to the frame type:
@@ -977,10 +977,10 @@
// GC support.
void Iterate(ObjectVisitor* v) const override;
- // Return a list with {SharedFunctionInfo} objects of this frame.
+ // Return a list with JSFunctions of this frame.
// The functions are ordered bottom-to-top (i.e. functions.last()
// is the top-most activation)
- void GetFunctions(List<SharedFunctionInfo*>* functions) const override;
+ void GetFunctions(List<JSFunction*>* functions) const override;
void Summarize(
List<FrameSummary>* frames,
« no previous file with comments | « src/accessors.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698