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

Unified Diff: third_party/WebKit/Source/core/layout/shapes/BoxShapeTest.cpp

Issue 2591373003: Changed WritingMode to an enum class and renamed its members (Closed)
Patch Set: Added comment 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/shapes/BoxShapeTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/shapes/BoxShapeTest.cpp b/third_party/WebKit/Source/core/layout/shapes/BoxShapeTest.cpp
index 2dfb59f000fa8676718e29ab1f5cdc4dd019bafb..9267fa5f6cdf3511ce63764a05a51e3322f0de98 100644
--- a/third_party/WebKit/Source/core/layout/shapes/BoxShapeTest.cpp
+++ b/third_party/WebKit/Source/core/layout/shapes/BoxShapeTest.cpp
@@ -41,7 +41,7 @@ class BoxShapeTest : public ::testing::Test {
std::unique_ptr<Shape> createBoxShape(const FloatRoundedRect& bounds,
float shapeMargin) {
- return Shape::createLayoutBoxShape(bounds, TopToBottomWritingMode,
+ return Shape::createLayoutBoxShape(bounds, WritingMode::HorizontalTb,
shapeMargin);
}
};

Powered by Google App Engine
This is Rietveld 408576698