| Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp
|
| index 868fdeabb4a10bbbd26e5c896eed010b25383bb0..bcca55f63605fe35d5f20f6b30d15bfb10a73462 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.cpp
|
| @@ -414,7 +414,7 @@ void InjectedScript::Scope::ignoreExceptionsAndMuteConsole()
|
| {
|
| DCHECK(!m_ignoreExceptionsAndMuteConsole);
|
| m_ignoreExceptionsAndMuteConsole = true;
|
| - m_debugger->client()->muteConsole();
|
| + m_debugger->muteConsole();
|
| m_previousPauseOnExceptionsState = setPauseOnExceptionsState(V8DebuggerImpl::DontPauseOnExceptions);
|
| }
|
|
|
| @@ -448,7 +448,7 @@ InjectedScript::Scope::~Scope()
|
| {
|
| if (m_ignoreExceptionsAndMuteConsole) {
|
| setPauseOnExceptionsState(m_previousPauseOnExceptionsState);
|
| - m_debugger->client()->unmuteConsole();
|
| + m_debugger->unmuteConsole();
|
| }
|
| if (m_userGesture)
|
| m_debugger->client()->endUserGesture();
|
|
|