| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| index 3d5bf5c5820fdeee32c4ec0968a14fe9d6ded721..d3a7977b077d7e2640edc9e430d4ea2da9f9ebce 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| @@ -221,6 +221,17 @@ private:
|
| void internalSetAsyncCallStackDepth(int);
|
| void increaseCachedSkipStackGeneration();
|
|
|
| + void setCallFrameVariableValue(ErrorString*,
|
| + int scopeNumber,
|
| + const String16& variableName,
|
| + PassOwnPtr<protocol::Runtime::CallArgument> newValue,
|
| + const Maybe<String16>& callFrameId);
|
| + void setFunctionVariableValue(ErrorString*,
|
| + int scopeNumber,
|
| + const String16& variableName,
|
| + PassOwnPtr<protocol::Runtime::CallArgument> newValueArgument,
|
| + const Maybe<String16>& functionObjectId);
|
| +
|
| using ScriptsMap = protocol::HashMap<String16, V8DebuggerScript>;
|
| using BreakpointIdToDebuggerBreakpointIdsMap = protocol::HashMap<String16, protocol::Vector<String16>>;
|
| using DebugServerBreakpointToBreakpointIdAndSourceMap = protocol::HashMap<String16, std::pair<String16, BreakpointSource>>;
|
|
|