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 8d2b396c32fce81a4b94c660fa3b04242933b03a..dbf988607d6e0424878db6a1bc8299a471b436fc 100644 |
--- a/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
+++ b/third_party/WebKit/Source/core/inspector/InspectedFrames.cpp |
@@ -32,7 +32,7 @@ bool InspectedFrames::contains(LocalFrame* frame) const |
LocalFrame* InspectedFrames::frameWithSecurityOrigin(const String& originRawString) |
{ |
for (LocalFrame* frame : *this) { |
- if (frame->document()->securityOrigin()->toRawString() == originRawString) |
+ if (frame->document()->getSecurityOrigin()->toRawString() == originRawString) |
return frame; |
} |
return nullptr; |