| 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 75882dc3d2dfe00d14ca7e853866403c61caa79b..04d1ad7c8927d05aad0b53f067f7fc92b239e7b3 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerAgentImpl.h
|
| @@ -51,7 +51,7 @@ public:
|
| void enable(ErrorString*) override;
|
| void disable(ErrorString*) override;
|
| void setBreakpointsActive(ErrorString*, bool active) override;
|
| - void setSkipAllPauses(ErrorString*, bool skipped) override;
|
| + void setSkipAllPauses(ErrorString*, bool skip) override;
|
| void setBreakpointByUrl(ErrorString*,
|
| int lineNumber,
|
| const Maybe<String16>& optionalURL,
|
| @@ -77,7 +77,7 @@ public:
|
| void setScriptSource(ErrorString*,
|
| const String16& inScriptId,
|
| const String16& inScriptSource,
|
| - const Maybe<bool>& inPreview,
|
| + const Maybe<bool>& dryRun,
|
| Maybe<protocol::Array<protocol::Debugger::CallFrame>>* optOutCallFrames,
|
| Maybe<bool>* optOutStackChanged,
|
| Maybe<protocol::Runtime::StackTrace>* optOutAsyncStackTrace,
|
| @@ -98,7 +98,7 @@ public:
|
| const String16& expression,
|
| const Maybe<String16>& objectGroup,
|
| const Maybe<bool>& includeCommandLineAPI,
|
| - const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole,
|
| + const Maybe<bool>& silent,
|
| const Maybe<bool>& returnByValue,
|
| const Maybe<bool>& generatePreview,
|
| std::unique_ptr<protocol::Runtime::RemoteObject>* result,
|
|
|