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

Unified Diff: third_party/WebKit/Source/core/paint/SVGShapePainter.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/paint/SVGShapePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGShapePainter.cpp b/third_party/WebKit/Source/core/paint/SVGShapePainter.cpp
index 550622ee5088987bc00a4f726992ddb6b6ff70bf..3bdd569d41c69419752cb5001aea0f09fb02f8d4 100644
--- a/third_party/WebKit/Source/core/paint/SVGShapePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGShapePainter.cpp
@@ -45,7 +45,7 @@ static SkPath::FillType fillRuleFromStyle(const PaintInfo& paintInfo,
void SVGShapePainter::paint(const PaintInfo& paintInfo) {
if (paintInfo.phase != PaintPhaseForeground ||
- m_layoutSVGShape.style()->visibility() != EVisibility::Visible ||
+ m_layoutSVGShape.style()->visibility() != EVisibility::kVisible ||
m_layoutSVGShape.isShapeEmpty())
return;

Powered by Google App Engine
This is Rietveld 408576698