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

Unified Diff: third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h

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/platform/fonts/shaping/ShapeResult.h
diff --git a/third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h b/third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h
index 5b7774ece299f6bb8f2be85b775fa86789adec48..911cb8a381010a476d5726c95025c50e42b39e4d 100644
--- a/third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h
+++ b/third_party/WebKit/Source/platform/fonts/shaping/ShapeResult.h
@@ -68,7 +68,7 @@ class PLATFORM_EXPORT ShapeResult : public RefCounted<ShapeResult> {
unsigned numCharacters() const { return m_numCharacters; }
void fallbackFonts(HashSet<const SimpleFontData*>*) const;
bool rtl() const {
- return static_cast<TextDirection>(m_direction) == TextDirection::Rtl;
+ return static_cast<TextDirection>(m_direction) == TextDirection::kRtl;
}
bool hasVerticalOffsets() const { return m_hasVerticalOffsets; }

Powered by Google App Engine
This is Rietveld 408576698