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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_writing_mode.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_writing_mode.h
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.h b/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.h
index eda01e84ea8e730fd7b7d7be1b879b8bd0f75586..4ada7d2778299fbf920cdac3174ff766f73cabaa 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.h
+++ b/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.h
@@ -11,11 +11,11 @@
namespace blink {
enum NGWritingMode {
- HorizontalTopBottom = 0,
- VerticalRightLeft = 1,
- VerticalLeftRight = 2,
- SidewaysRightLeft = 3,
- SidewaysLeftRight = 4
+ kHorizontalTopBottom = 0,
+ kVerticalRightLeft = 1,
+ kVerticalLeftRight = 2,
+ kSidewaysRightLeft = 3,
+ kSidewaysLeftRight = 4
};
CORE_EXPORT NGWritingMode FromPlatformWritingMode(WritingMode);
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_units_test.cc ('k') | third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698