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); |