| Index: test/cctest/test-debug.cc
|
| diff --git a/test/cctest/test-debug.cc b/test/cctest/test-debug.cc
|
| index 4cea3c3dac153d6d25a5f15cf7b5d98bdc39baea..74f461fa00ddc653b2117401e77d0f74156322dc 100644
|
| --- a/test/cctest/test-debug.cc
|
| +++ b/test/cctest/test-debug.cc
|
| @@ -37,6 +37,7 @@
|
| #include "compilation-cache.h"
|
| #include "debug.h"
|
| #include "deoptimizer.h"
|
| +#include "frames.h"
|
| #include "platform.h"
|
| #include "stub-cache.h"
|
| #include "utils.h"
|
| @@ -54,6 +55,7 @@ using ::v8::internal::Debug;
|
| using ::v8::internal::Debugger;
|
| using ::v8::internal::CommandMessage;
|
| using ::v8::internal::CommandMessageQueue;
|
| +using ::v8::internal::StackFrame;
|
| using ::v8::internal::StepAction;
|
| using ::v8::internal::StepIn; // From StepAction enum
|
| using ::v8::internal::StepNext; // From StepAction enum
|
| @@ -384,7 +386,7 @@ static void ChangeBreakOnExceptionFromJS(bool caught, bool uncaught) {
|
| // Prepare to step to next break location.
|
| static void PrepareStep(StepAction step_action) {
|
| v8::internal::Debug* debug = v8::internal::Isolate::Current()->debug();
|
| - debug->PrepareStep(step_action, 1);
|
| + debug->PrepareStep(step_action, 1, StackFrame::NO_ID);
|
| }
|
|
|
|
|
|
|