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

Unified Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp

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/svg/LayoutSVGImage.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
index d95b5566c8eaa959f28d00f8833bd4fa3cefbc9f..ccd206be5f53d066e4dadfac2e99482cb064c4fd 100644
--- a/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/LayoutSVGImage.cpp
@@ -165,7 +165,7 @@ bool LayoutSVGImage::nodeAtFloatPoint(HitTestResult& result,
PointerEventsHitRules hitRules(PointerEventsHitRules::SVG_IMAGE_HITTESTING,
result.hitTestRequest(),
style()->pointerEvents());
- bool isVisible = (style()->visibility() == EVisibility::Visible);
+ bool isVisible = (style()->visibility() == EVisibility::kVisible);
if (isVisible || !hitRules.requireVisible) {
FloatPoint localPoint;
if (!SVGLayoutSupport::transformToUserSpaceAndCheckClipping(

Powered by Google App Engine
This is Rietveld 408576698