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

Unified Diff: third_party/WebKit/Source/core/html/HTMLElement.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/html/HTMLElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLElement.cpp b/third_party/WebKit/Source/core/html/HTMLElement.cpp
index d51c8af139df42391dc705dd238188417d9534fc..9755528d4b2eb6bee6591e07cba4f35ae9ae223a 100644
--- a/third_party/WebKit/Source/core/html/HTMLElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLElement.cpp
@@ -810,7 +810,7 @@ TextDirection HTMLElement::directionalityIfhasDirAutoAttribute(
bool& isAuto) const {
isAuto = hasDirectionAuto();
if (!isAuto)
- return TextDirection::Ltr;
+ return TextDirection::kLtr;
return directionality();
}
@@ -864,7 +864,7 @@ TextDirection HTMLElement::directionality(
}
if (strongDirectionalityTextNode)
*strongDirectionalityTextNode = 0;
- return TextDirection::Ltr;
+ return TextDirection::kLtr;
}
bool HTMLElement::selfOrAncestorHasDirAutoAttribute() const {

Powered by Google App Engine
This is Rietveld 408576698