[debugger] fix debug command processor wrt restart frame.

R=jkummerow@chromium.org
BUG=v8:4757
LOG=N

Review URL: https://codereview.chromium.org/1700693002

Cr-Commit-Position: refs/heads/master@{#33983}
This commit is contained in:
yangguo 2016-02-15 01:37:00 -08:00 committed by Commit bot
parent 14296d642f
commit 125ac66bf6

View File

@ -2315,7 +2315,7 @@ DebugCommandProcessor.prototype.restartFrameRequest_ = function(
frame_mirror = this.exec_state_.frame();
}
var result_description = Debug.LiveEdit.RestartFrame(frame_mirror);
var result_description = frame_mirror.restart();
response.body = {result: result_description};
};