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

Unified Diff: third_party/WebKit/Source/core/input/EventHandler.cpp

Issue 2735293002: Rename *isOverWidget* methods to ...isOverFrameViewBase... (Closed)
Patch Set: 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/input/EventHandler.cpp
diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
index 082ed28ad7608107307401a1e2471f1274d199e3..b64bc3f86a5814c6f83cb1451859e52d04505424 100644
--- a/third_party/WebKit/Source/core/input/EventHandler.cpp
+++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
@@ -328,7 +328,7 @@ static LocalFrame* subframeForTargetNode(Node* node) {
static LocalFrame* subframeForHitTestResult(
const MouseEventWithHitTestResults& hitTestResult) {
- if (!hitTestResult.isOverWidget())
+ if (!hitTestResult.isOverFrameViewBase())
return nullptr;
return subframeForTargetNode(hitTestResult.innerNode());
}

Powered by Google App Engine
This is Rietveld 408576698