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

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

Issue 2542843002: Changed EPointerEvents to an enum class and renamed its members to keywords (Closed)
Patch Set: Created 4 years 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 bd0ba94ac49d929f860c99b9eaa2e8d88e60a75e..faa605226730ae72085f25592afc65ca5e2ab7c9 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1475,7 +1475,7 @@ class CORE_EXPORT LayoutObject : public ImageResourceObserver,
bool visibleToHitTestRequest(const HitTestRequest& request) const {
return style()->visibility() == EVisibility::Visible &&
(request.ignorePointerEventsNone() ||
- style()->pointerEvents() != PE_NONE) &&
+ style()->pointerEvents() != EPointerEvents::PE_NONE) &&
!isInert();
}

Powered by Google App Engine
This is Rietveld 408576698