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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGElement.cpp

Issue 2670643004: Rename EDisplay values with k prefix. (Closed)
Patch Set: Rebase Created 3 years, 9 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/svg/SVGGElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGGElement.cpp b/third_party/WebKit/Source/core/svg/SVGGElement.cpp
index 1d5541a8c72008b31a06d6dc792632bc0d45ca21..bf029b04ccc7785e9995e89de29b1c9baca2a785 100644
--- a/third_party/WebKit/Source/core/svg/SVGGElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGGElement.cpp
@@ -38,7 +38,7 @@ LayoutObject* SVGGElement::createLayoutObject(const ComputedStyle& style) {
// We still have to create layoutObjects for the <g> & <linearGradient>
// element, though the subtree may be hidden - we only want the resource
// layoutObjects to exist so they can be referenced from somewhere else.
- if (style.display() == EDisplay::None)
+ if (style.display() == EDisplay::kNone)
return new LayoutSVGHiddenContainer(this);
return new LayoutSVGTransformableContainer(this);

Powered by Google App Engine
This is Rietveld 408576698