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

Unified Diff: third_party/WebKit/Source/core/page/EventWithHitTestResults.h

Issue 2735293002: Rename *isOverWidget* methods to ...isOverFrameViewBase... (Closed)
Patch Set: Rename *isOverWidget* methods to ...isOverFrameViewBase... 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutPart.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/page/EventWithHitTestResults.h
diff --git a/third_party/WebKit/Source/core/page/EventWithHitTestResults.h b/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
index eeadd834d898abeeea5ba79f6172a2203a767bdf..3d62cdd8561cf7f3e6f76ecd1f2d449c85d2651d 100644
--- a/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
+++ b/third_party/WebKit/Source/core/page/EventWithHitTestResults.h
@@ -43,7 +43,9 @@ class EventWithHitTestResults {
LayoutPoint localPoint() const { return m_hitTestResult.localPoint(); }
Scrollbar* scrollbar() const { return m_hitTestResult.scrollbar(); }
bool isOverLink() const { return m_hitTestResult.isOverLink(); }
- bool isOverWidget() const { return m_hitTestResult.isOverWidget(); }
+ bool isOverFrameViewBase() const {
+ return m_hitTestResult.isOverFrameViewBase();
+ }
Node* innerNode() const { return m_hitTestResult.innerNode(); }
const String& canvasRegionId() const {
return m_hitTestResult.canvasRegionId();
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutPart.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698