Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/frame/FrameView.cpp

Issue 1773813007: blink: Rename modules/ method to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-modules: rebase-fixes Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « third_party/WebKit/Source/core/frame/Frame.cpp ('k') | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/frame/FrameView.cpp
diff --git a/third_party/WebKit/Source/core/frame/FrameView.cpp b/third_party/WebKit/Source/core/frame/FrameView.cpp
index 0b59c070e50fe11325dbc293a7336866381a584f..5973ff23a0c8405835530846834810eee2cf0d52 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -4086,9 +4086,9 @@ void FrameView::notifyRenderThrottlingObservers()
//
// Check if we can access our parent's security origin.
m_crossOriginForThrottling = false;
- const SecurityOrigin* origin = frame().securityContext()->securityOrigin();
+ const SecurityOrigin* origin = frame().securityContext()->getSecurityOrigin();
for (Frame* parentFrame = m_frame->tree().parent(); parentFrame; parentFrame = parentFrame->tree().parent()) {
- const SecurityOrigin* parentOrigin = parentFrame->securityContext()->securityOrigin();
+ const SecurityOrigin* parentOrigin = parentFrame->securityContext()->getSecurityOrigin();
if (!origin->canAccess(parentOrigin)) {
m_crossOriginForThrottling = true;
break;
« no previous file with comments | « third_party/WebKit/Source/core/frame/Frame.cpp ('k') | third_party/WebKit/Source/core/frame/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine