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

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 82075ad1ed24a2aa9211a8441f7cc133f7729b22..af83a6836bf3bb33ceaaa6bd07ce2e68d52fa0d9 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.h
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.h
@@ -1470,9 +1470,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();
}

Powered by Google App Engine
This is Rietveld 408576698