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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2620873002: Renamed EUnicodeBidi to just UnicodeBidi (Closed)
Patch Set: Rebase 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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index f6eeec950e9588395149422d912ad18bae44a787..9423cfc5589a6a7cbf019a6afdcab88fbc5be540 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -259,7 +259,7 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
unsigned m_clear : 2; // EClear
unsigned m_position : 3; // EPosition
unsigned m_tableLayout : 1; // ETableLayout
- unsigned m_unicodeBidi : 3; // EUnicodeBidi
+ unsigned m_unicodeBidi : 3; // UnicodeBidi
// This is set if we used viewport units when resolving a length.
// It is mutable so we can pass around const ComputedStyles to resolve
@@ -1856,11 +1856,11 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
}
// unicode-bidi
- static EUnicodeBidi initialUnicodeBidi() { return EUnicodeBidi::kNormal; }
- EUnicodeBidi unicodeBidi() const {
- return static_cast<EUnicodeBidi>(m_nonInheritedData.m_unicodeBidi);
+ static UnicodeBidi initialUnicodeBidi() { return UnicodeBidi::kNormal; }
+ UnicodeBidi getUnicodeBidi() const {
+ return static_cast<UnicodeBidi>(m_nonInheritedData.m_unicodeBidi);
}
- void setUnicodeBidi(EUnicodeBidi b) {
+ void setUnicodeBidi(UnicodeBidi b) {
m_nonInheritedData.m_unicodeBidi = static_cast<unsigned>(b);
}

Powered by Google App Engine
This is Rietveld 408576698