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

Unified Diff: third_party/WebKit/Source/core/layout/HitTestResult.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
Index: third_party/WebKit/Source/core/layout/HitTestResult.h
diff --git a/third_party/WebKit/Source/core/layout/HitTestResult.h b/third_party/WebKit/Source/core/layout/HitTestResult.h
index ff5c464228f02e7944df64862e1f7faaaea9265a..afda9c270d953ab73e83f61a28ff87840ffa06ac 100644
--- a/third_party/WebKit/Source/core/layout/HitTestResult.h
+++ b/third_party/WebKit/Source/core/layout/HitTestResult.h
@@ -98,7 +98,7 @@ class CORE_EXPORT HitTestResult {
Element* URLElement() const { return m_innerURLElement.get(); }
Scrollbar* scrollbar() const { return m_scrollbar.get(); }
- bool isOverWidget() const { return m_isOverWidget; }
+ bool isOverFrameViewBase() const { return m_isOverFrameViewBase; }
// Forwarded from HitTestLocation
bool isRectBasedTest() const { return m_hitTestLocation.isRectBasedTest(); }
@@ -140,7 +140,7 @@ class CORE_EXPORT HitTestResult {
HTMLAreaElement* imageAreaForImage() const;
void setURLElement(Element*);
void setScrollbar(Scrollbar*);
- void setIsOverWidget(bool b) { m_isOverWidget = b; }
+ void setIsOverFrameViewBase(bool b) { m_isOverFrameViewBase = b; }
bool isSelected() const;
String title(TextDirection&) const;
@@ -207,8 +207,9 @@ class CORE_EXPORT HitTestResult {
// layoutObject we hit on subsequent operations.
Member<Element> m_innerURLElement;
Member<Scrollbar> m_scrollbar;
- bool m_isOverWidget; // Returns true if we are over a widget (and not in the
- // border/padding area of a LayoutPart for example).
+ bool m_isOverFrameViewBase; // Returns true if we are over a FrameViewBase
+ // (and not in the border/padding area of a
+ // LayoutPart for example).
mutable Member<NodeSet> m_listBasedTestResult;
String m_canvasRegionId;
« no previous file with comments | « third_party/WebKit/Source/core/layout/HitTestCache.cpp ('k') | third_party/WebKit/Source/core/layout/HitTestResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698