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

Unified Diff: Source/core/page/EventHandler.cpp

Issue 189573002: Convert HTMLFrameOwnerElement and FocusController to use Frame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Improve FocusController handling of RemoteFrames Created 6 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: Source/core/page/EventHandler.cpp
diff --git a/Source/core/page/EventHandler.cpp b/Source/core/page/EventHandler.cpp
index f32a579c0cb86dbe09e7a2250c02e1d1e726b4f3..0f4d88818cb46eba4afd373f2b783d3444da5c55 100644
--- a/Source/core/page/EventHandler.cpp
+++ b/Source/core/page/EventHandler.cpp
@@ -1714,7 +1714,7 @@ bool EventHandler::handlePasteGlobalSelection(const PlatformMouseEvent& mouseEve
if (!m_frame->page())
return false;
- LocalFrame* focusFrame = m_frame->page()->focusController().focusedOrMainFrame();
+ LocalFrame* focusFrame = toLocalFrame(m_frame->page()->focusController().focusedOrMainFrame());
// Do not paste here if the focus was moved somewhere else.
if (m_frame == focusFrame && m_frame->editor().behavior().supportsGlobalSelection())
return m_frame->editor().command("PasteGlobalSelection").execute();
@@ -1750,7 +1750,7 @@ static bool targetIsFrame(Node* target, LocalFrame*& frame)
if (!target->hasTagName(frameTag) && !target->hasTagName(iframeTag))
return false;
- frame = toHTMLFrameElementBase(target)->contentFrame();
+ frame = toLocalFrame(toHTMLFrameElementBase(target)->contentFrame());
return true;
}

Powered by Google App Engine
This is Rietveld 408576698