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 16436d055d887e96ef22faa8ee6c502c5ab58ffb..bc08f490e3cd4b3c93c49e6db635c81eae7b62df 100644 |
--- a/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp |
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8DebuggerImpl.cpp |
@@ -879,7 +879,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); |