| Index: src/inspector/V8DebuggerAgentImpl.cc
|
| diff --git a/src/inspector/V8DebuggerAgentImpl.cc b/src/inspector/V8DebuggerAgentImpl.cc
|
| index 63035d1f2e6a35bbbda70fb8e6cb31d19b5221d5..20ad444567d268332c1a29f4770c6950cb67eff9 100644
|
| --- a/src/inspector/V8DebuggerAgentImpl.cc
|
| +++ b/src/inspector/V8DebuggerAgentImpl.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "src/inspector/V8DebuggerAgentImpl.h"
|
|
|
| +#include <algorithm>
|
| +
|
| #include "src/inspector/InjectedScript.h"
|
| #include "src/inspector/InspectedContext.h"
|
| #include "src/inspector/JavaScriptCallFrame.h"
|
| @@ -22,8 +24,6 @@
|
|
|
| #include "include/v8-inspector.h"
|
|
|
| -#include <algorithm>
|
| -
|
| namespace v8_inspector {
|
|
|
| using protocol::Array;
|
| @@ -50,7 +50,7 @@ static const char columnNumber[] = "columnNumber";
|
| static const char condition[] = "condition";
|
| static const char skipAllPauses[] = "skipAllPauses";
|
|
|
| -} // namespace DebuggerAgentState;
|
| +} // namespace DebuggerAgentState
|
|
|
| static const int maxSkipStepFrameCount = 128;
|
| static const char backtraceObjectGroup[] = "backtrace";
|
|
|