| Index: third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp
|
| index 1e368354bfcc4556c3ffe39930d0ed6baabf71ef..b8239cf530b1b8538c69680b26bfa51a332454d1 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp
|
| @@ -878,7 +878,7 @@ void V8DebuggerImpl::disconnect(V8InspectorSessionImpl* session)
|
| InspectedContext* V8DebuggerImpl::getContext(int groupId, int contextId) const
|
| {
|
| ContextsByGroupMap::const_iterator contextGroupIt = m_contexts.find(groupId);
|
| - if (contextGroupIt == m_contexts.cend())
|
| + if (contextGroupIt == m_contexts.end())
|
| return nullptr;
|
|
|
| ContextByIdMap::iterator contextIt = contextGroupIt->second->find(contextId);
|
|
|