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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.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_physical_constraint_space.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
index c1019831e711563bc36b6ee68232de9165b5cb67..b1b1994e1f64ea02c546d6ab42a7b87ab4742ea5 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_physical_constraint_space.h
@@ -15,17 +15,17 @@ namespace blink {
// TODO(glebl@): unused, delete.
enum NGExclusionType {
- NGClearNone = 0,
- NGClearFloatLeft = 1,
- NGClearFloatRight = 2,
- NGClearFragment = 4
+ kNGClearNone = 0,
+ kNGClearFloatLeft = 1,
+ kNGClearFloatRight = 2,
+ kNGClearFragment = 4
};
enum NGFragmentationType {
- FragmentNone,
- FragmentPage,
- FragmentColumn,
- FragmentRegion
+ kFragmentNone,
+ kFragmentPage,
+ kFragmentColumn,
+ kFragmentRegion
};
// The NGPhysicalConstraintSpace contains the underlying data for the

Powered by Google App Engine
This is Rietveld 408576698