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

Unified Diff: third_party/WebKit/public/web/WebTextDirection.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
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/public/web/WebTextDirection.h
diff --git a/third_party/WebKit/public/web/WebTextDirection.h b/third_party/WebKit/public/web/WebTextDirection.h
index 0600ef51e6c99030b8c3057280ef22723c9f4a76..bfa08e4c66d9b61cfd607d35cf173d99d51815bd 100644
--- a/third_party/WebKit/public/web/WebTextDirection.h
+++ b/third_party/WebKit/public/web/WebTextDirection.h
@@ -48,9 +48,9 @@ enum WebTextDirection {
#if BLINK_IMPLEMENTATION
inline WebTextDirection toWebTextDirection(TextDirection direction) {
switch (direction) {
- case TextDirection::Ltr:
+ case TextDirection::kLtr:
return WebTextDirectionLeftToRight;
- case TextDirection::Rtl:
+ case TextDirection::kRtl:
return WebTextDirectionRightToLeft;
}
ASSERT_NOT_REACHED();
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698