Index: third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h |
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h |
index 28a54c1c33d924ba4d8e0b5b73c7b90b1770cd0b..d08a0b63311a83a40e6832aeceef1f098d02604d 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8RuntimeAgentImpl.h |
@@ -62,7 +62,7 @@ public: |
const String16& expression, |
const Maybe<String16>& objectGroup, |
const Maybe<bool>& includeCommandLineAPI, |
- const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole, |
+ const Maybe<bool>& silent, |
const Maybe<int>& executionContextId, |
const Maybe<bool>& returnByValue, |
const Maybe<bool>& generatePreview, |
@@ -78,7 +78,7 @@ public: |
const String16& objectId, |
const String16& expression, |
const Maybe<protocol::Array<protocol::Runtime::CallArgument>>& optionalArguments, |
- const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole, |
+ const Maybe<bool>& silent, |
const Maybe<bool>& returnByValue, |
const Maybe<bool>& generatePreview, |
const Maybe<bool>& userGesture, |
@@ -94,7 +94,7 @@ public: |
Maybe<protocol::Array<protocol::Runtime::InternalPropertyDescriptor>>* internalProperties, |
Maybe<protocol::Runtime::ExceptionDetails>*) override; |
void releaseObjectGroup(ErrorString*, const String16& objectGroup) override; |
- void run(ErrorString*) override; |
+ void runIfWaitingForDebugger(ErrorString*) override; |
void setCustomObjectFormatterEnabled(ErrorString*, bool) override; |
void discardConsoleEntries(ErrorString*) override; |
void compileScript(ErrorString*, |
@@ -108,7 +108,7 @@ public: |
const String16&, |
const Maybe<int>& executionContextId, |
const Maybe<String16>& objectGroup, |
- const Maybe<bool>& doNotPauseOnExceptionsAndMuteConsole, |
+ const Maybe<bool>& silent, |
const Maybe<bool>& includeCommandLineAPI, |
const Maybe<bool>& returnByValue, |
const Maybe<bool>& generatePreview, |