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

Unified Diff: src/debug/debug.cc

Issue 2788413004: [inspector] cache stack frame for call sites (Closed)
Patch Set: reverted v8-debugger change Created 3 years, 8 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/compiler/bytecode-graph-builder.cc ('k') | src/extensions/statistics-extension.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index e54b7e9778d7c71b59141b2ad217954c96f517fd..e4107afdc2b13883e737ef27f94f42fc1808b485 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -186,7 +186,7 @@ CodeBreakIterator::CodeBreakIterator(Handle<DebugInfo> debug_info)
: BreakIterator(debug_info),
reloc_iterator_(debug_info->DebugCode(), GetModeMask()),
source_position_iterator_(
- debug_info->DebugCode()->source_position_table()) {
+ debug_info->DebugCode()->SourcePositionTable()) {
// There is at least one break location.
DCHECK(!Done());
Next();
@@ -277,7 +277,7 @@ BytecodeArrayBreakIterator::BytecodeArrayBreakIterator(
Handle<DebugInfo> debug_info)
: BreakIterator(debug_info),
source_position_iterator_(
- debug_info->DebugBytecodeArray()->source_position_table()) {
+ debug_info->DebugBytecodeArray()->SourcePositionTable()) {
// There is at least one break location.
DCHECK(!Done());
Next();
« no previous file with comments | « src/compiler/bytecode-graph-builder.cc ('k') | src/extensions/statistics-extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698