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

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

Issue 2723963003: Remove renderer-to-renderer input event forwarding for OOPIFs (Closed)
Patch Set: Correct test expectation Created 3 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/html/HTMLFrameElementBase.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp b/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
index 26ce8d7c36974293a509816447a37e218a909cfe..fe4435bff7c2d4c84e504079100ef7440d2b169c 100644
--- a/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFrameElementBase.cpp
@@ -245,16 +245,6 @@ bool HTMLFrameElementBase::isHTMLContentAttribute(
HTMLFrameOwnerElement::isHTMLContentAttribute(attribute);
}
-// FIXME: Remove this code once we have input routing in the browser
-// process. See http://crbug.com/339659.
-void HTMLFrameElementBase::defaultEventHandler(Event* event) {
- if (contentFrame() && contentFrame()->isRemoteFrame()) {
- toRemoteFrame(contentFrame())->forwardInputEvent(event);
- return;
- }
- HTMLFrameOwnerElement::defaultEventHandler(event);
-}
-
void HTMLFrameElementBase::setScrollingMode(ScrollbarMode scrollbarMode) {
if (m_scrollingMode == scrollbarMode)
return;

Powered by Google App Engine
This is Rietveld 408576698