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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutDetailsMarker.cpp

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/LayoutDetailsMarker.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutDetailsMarker.cpp b/third_party/WebKit/Source/core/layout/LayoutDetailsMarker.cpp
index e58624e047c3e6e2b8f8b9fa4e2757ce69906772..125d77b2b012ef310148da9f6fcd5b25c10ff398 100644
--- a/third_party/WebKit/Source/core/layout/LayoutDetailsMarker.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutDetailsMarker.cpp
@@ -34,15 +34,15 @@ LayoutDetailsMarker::LayoutDetailsMarker(Element* element)
LayoutDetailsMarker::Orientation LayoutDetailsMarker::getOrientation() const {
switch (style()->getWritingMode()) {
- case WritingMode::HorizontalTb:
+ case WritingMode::kHorizontalTb:
if (style()->isLeftToRightDirection())
return isOpen() ? Down : Right;
return isOpen() ? Down : Left;
- case WritingMode::VerticalRl:
+ case WritingMode::kVerticalRl:
if (style()->isLeftToRightDirection())
return isOpen() ? Left : Down;
return isOpen() ? Left : Up;
- case WritingMode::VerticalLr:
+ case WritingMode::kVerticalLr:
if (style()->isLeftToRightDirection())
return isOpen() ? Right : Down;
return isOpen() ? Right : Up;

Powered by Google App Engine
This is Rietveld 408576698