Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

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

Issue 1814863002: Make page popups work under OOPIF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 95256f8fd2dcc4cb21f24d1ecd36690a539a9a54..1b3b0970d8fcfedb56a2e55f45ecd6b7c3ca4a30 100644
--- a/third_party/WebKit/Source/core/frame/FrameView.cpp
+++ b/third_party/WebKit/Source/core/frame/FrameView.cpp
@@ -3626,7 +3626,7 @@ IntRect FrameView::contentsToScreen(const IntRect& rect) const
HostWindow* window = hostWindow();
if (!window)
return IntRect();
- return window->viewportToScreen(contentsToViewport(rect));
+ return window->viewportToScreen(contentsToViewport(rect), this);
}
IntRect FrameView::soonToBeRemovedContentsToUnscaledViewport(const IntRect& rectInContents) const

Powered by Google App Engine
This is Rietveld 408576698