| Index: src/inspector/v8-debugger.cc
|
| diff --git a/src/inspector/v8-debugger.cc b/src/inspector/v8-debugger.cc
|
| index f4980e2f87e1de3d4916b2c526dd7c2c0d107b3b..aa77769d9db0609ea14698c27619fb4fbc87da6c 100644
|
| --- a/src/inspector/v8-debugger.cc
|
| +++ b/src/inspector/v8-debugger.cc
|
| @@ -152,6 +152,7 @@ String16 V8Debugger::setBreakpoint(const ScriptBreakpoint& breakpoint,
|
| toV8String(m_isolate, breakpoint.condition))
|
| .FromMaybe(false);
|
| DCHECK(success);
|
| + USE(success);
|
|
|
| v8::Local<v8::Function> setBreakpointFunction = v8::Local<v8::Function>::Cast(
|
| m_debuggerScript.Get(m_isolate)
|
| @@ -186,6 +187,7 @@ void V8Debugger::removeBreakpoint(const String16& breakpointId) {
|
| toV8String(m_isolate, breakpointId))
|
| .FromMaybe(false);
|
| DCHECK(success);
|
| + USE(success);
|
|
|
| v8::Local<v8::Function> removeBreakpointFunction =
|
| v8::Local<v8::Function>::Cast(
|
| @@ -224,6 +226,7 @@ void V8Debugger::setBreakpointsActivated(bool activated) {
|
| v8::Boolean::New(m_isolate, activated))
|
| .FromMaybe(false);
|
| DCHECK(success);
|
| + USE(success);
|
| v8::Local<v8::Function> setBreakpointsActivated =
|
| v8::Local<v8::Function>::Cast(
|
| m_debuggerScript.Get(m_isolate)
|
|
|