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

Unified Diff: third_party/WebKit/Source/core/paint/SVGImagePainter.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/SVGImagePainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp b/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
index b4519adc77e16b27ebd8c2d82fc03c14b9fd39ed..29db58a4f19edd6ed27d98ec9834f829defb24a2 100644
--- a/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGImagePainter.cpp
@@ -20,7 +20,7 @@ namespace blink {
void SVGImagePainter::paint(const PaintInfo& paintInfo) {
if (paintInfo.phase != PaintPhaseForeground ||
- m_layoutSVGImage.style()->visibility() != EVisibility::Visible ||
+ m_layoutSVGImage.style()->visibility() != EVisibility::kVisible ||
!m_layoutSVGImage.imageResource()->hasImage())
return;

Powered by Google App Engine
This is Rietveld 408576698