| Index: src/runtime/runtime-liveedit.cc | 
| diff --git a/src/runtime/runtime-liveedit.cc b/src/runtime/runtime-liveedit.cc | 
| index e2b895f9a5259fc57e3d8552ca715d40594443c2..c53f30a8f897e31c2242dd17f8330fe3aef574bc 100644 | 
| --- a/src/runtime/runtime-liveedit.cc | 
| +++ b/src/runtime/runtime-liveedit.cc | 
| @@ -6,6 +6,7 @@ | 
|  | 
| #include "src/arguments.h" | 
| #include "src/debug/debug.h" | 
| +#include "src/debug/debug-frames.h" | 
| #include "src/debug/liveedit.h" | 
| #include "src/runtime/runtime.h" | 
| #include "src/runtime/runtime-utils.h" | 
| @@ -280,7 +281,8 @@ RUNTIME_FUNCTION(Runtime_LiveEditRestartFrame) { | 
| } | 
|  | 
| JavaScriptFrameIterator it(isolate, id); | 
| -  int inlined_jsframe_index = Runtime::FindIndexedNonNativeFrame(&it, index); | 
| +  int inlined_jsframe_index = | 
| +      DebugFrameHelper::FindIndexedNonNativeFrame(&it, index); | 
| if (inlined_jsframe_index == -1) return heap->undefined_value(); | 
| // We don't really care what the inlined frame index is, since we are | 
| // throwing away the entire frame anyways. | 
|  |