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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.h

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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/LayoutObject.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.h b/third_party/WebKit/Source/core/layout/LayoutObject.h
index 2f529857d1578833956c90f49f3161ebce026cac..a509ff3ebefbf5889e74ed5d4c843d351e468c41 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1476,9 +1476,9 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
}
bool visibleToHitTestRequest(const HitTestRequest& request) const {
- return style()->visibility() == EVisibility::Visible &&
+ return style()->visibility() == EVisibility::kVisible &&
(request.ignorePointerEventsNone() ||
- style()->pointerEvents() != EPointerEvents::None) &&
+ style()->pointerEvents() != EPointerEvents::kNone) &&
!isInert();
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutMenuList.cpp ('k') | third_party/WebKit/Source/core/layout/LayoutObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698