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

Unified Diff: third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc

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/layout/ng/ng_writing_mode.cc
diff --git a/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc b/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc
index 8a9fef34158e9d3671a02d9069193ca5cec2ef08..c9b65792a51ee43716898deb1b9603697c680471 100644
--- a/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc
+++ b/third_party/WebKit/Source/core/layout/ng/ng_writing_mode.cc
@@ -10,11 +10,11 @@ namespace blink {
NGWritingMode FromPlatformWritingMode(WritingMode mode) {
switch (mode) {
- case WritingMode::HorizontalTb:
+ case WritingMode::kHorizontalTb:
return kHorizontalTopBottom;
- case WritingMode::VerticalRl:
+ case WritingMode::kVerticalRl:
return kVerticalRightLeft;
- case WritingMode::VerticalLr:
+ case WritingMode::kVerticalLr:
return kVerticalLeftRight;
default:
NOTREACHED();

Powered by Google App Engine
This is Rietveld 408576698