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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_units.h

Issue 2536323003: [LayoutNG] Fix enum values to conform to kEnumName in style guide. (Closed)
Patch Set: rebase. Created 4 years 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/ng/ng_units.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_units.h b/third_party/WebKit/Source/core/layout/ng/ng_units.h
index 02774a38c2412371d75d6f23bc351e41b5e1ae3b..95151cc9e863cfc917fade2a82b04378dd7993f2 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_units.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_units.h
@@ -170,11 +170,11 @@ struct CORE_EXPORT NGExclusion {
enum Type {
// Undefined exclusion type.
// At this moment it's also used to represent CSS3 exclusion.
- NG_EXCLUSION_TYPE_UNDEFINED = 0,
+ kExclusionTypeUndefined = 0,
// Exclusion that is created by LEFT float.
- NG_FLOAT_LEFT = 1,
+ kFloatLeft = 1,
// Exclusion that is created by RIGHT float.
- NG_FLOAT_RIGHT = 2
+ kFloatRight = 2
};
// Rectangle in logical coordinates the represents this exclusion.

Powered by Google App Engine
This is Rietveld 408576698