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

Unified Diff: Source/core/html/HTMLFrameElementBase.cpp

Issue 642823006: Move forwardInputEvent to RemoteFrameClient. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Minor changes Created 6 years, 2 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/html/HTMLFrameElementBase.cpp
diff --git a/Source/core/html/HTMLFrameElementBase.cpp b/Source/core/html/HTMLFrameElementBase.cpp
index 7ac1c12eb20cb446865a47423627d94028506495..4195893be922b6f041bc92aabb65c684e22df513 100644
--- a/Source/core/html/HTMLFrameElementBase.cpp
+++ b/Source/core/html/HTMLFrameElementBase.cpp
@@ -213,7 +213,7 @@ bool HTMLFrameElementBase::isHTMLContentAttribute(const Attribute& attribute) co
void HTMLFrameElementBase::defaultEventHandler(Event* event)
{
if (contentFrame() && contentFrame()->isRemoteFrame()) {
- contentFrame()->chromeClient().forwardInputEvent(toRemoteFrame(contentFrame()), event);
Nate Chapin 2014/10/16 19:18:43 Is there a ChromeClient.h include to remove along
Charlie Reis 2014/10/16 20:09:02 Done.
+ toRemoteFrame(contentFrame())->forwardInputEvent(event);
return;
}
HTMLFrameOwnerElement::defaultEventHandler(event);

Powered by Google App Engine
This is Rietveld 408576698