Index: third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
diff --git a/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp b/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
index dbf988607d6e0424878db6a1bc8299a471b436fc..63bcb99611823a7e12254dc18749aea5fac94098 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
@@ -26,7 +26,7 @@ InspectedFrames::Iterator InspectedFrames::end() |
bool InspectedFrames::contains(LocalFrame* frame) const |
{ |
- return frame->instrumentingAgents() == m_root->instrumentingAgents(); |
+ return frame->instrumentingSessions() == m_root->instrumentingSessions(); |
} |
LocalFrame* InspectedFrames::frameWithSecurityOrigin(const String& originRawString) |
@@ -54,7 +54,7 @@ InspectedFrames::Iterator& InspectedFrames::Iterator::operator++() |
if (!frame->isLocalFrame()) |
continue; |
LocalFrame* local = toLocalFrame(frame); |
- if (local->instrumentingAgents() == m_root->instrumentingAgents()) { |
+ if (local->instrumentingSessions() == m_root->instrumentingSessions()) { |
m_current = local; |
break; |
} |