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

Unified Diff: third_party/WebKit/Source/core/css/CSSProperty.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/css/CSSProperty.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSProperty.cpp b/third_party/WebKit/Source/core/css/CSSProperty.cpp
index 54fb6514e7e67147baeb16944b9af1fb1123b2fc..b6740a8031530e9446683de14b0da6c38143d8c4 100644
--- a/third_party/WebKit/Source/core/css/CSSProperty.cpp
+++ b/third_party/WebKit/Source/core/css/CSSProperty.cpp
@@ -53,7 +53,7 @@ static CSSPropertyID resolveToPhysicalProperty(
WritingMode writingMode,
LogicalBoxSide logicalSide,
const StylePropertyShorthand& shorthand) {
- if (direction == TextDirection::Ltr) {
+ if (direction == TextDirection::kLtr) {
if (isHorizontalWritingMode(writingMode)) {
// The common case. The logical and physical box sides match.
// Left = Start, Right = End, Before = Top, After = Bottom

Powered by Google App Engine
This is Rietveld 408576698