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

Side by Side Diff: third_party/WebKit/public/web/WebTextDirection.h

Issue 2555923002: Changed TextDirection to an enum class and renamed its members (Closed)
Patch Set: Rebase after reopen Created 4 years 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 unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/web/PopupMenuImpl.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 30 matching lines...) Expand all
41 enum WebTextDirection { 41 enum WebTextDirection {
42 WebTextDirectionDefault, // Natural writing direction ("inherit") 42 WebTextDirectionDefault, // Natural writing direction ("inherit")
43 WebTextDirectionLeftToRight, 43 WebTextDirectionLeftToRight,
44 WebTextDirectionRightToLeft, 44 WebTextDirectionRightToLeft,
45 WebTextDirectionLast = WebTextDirectionRightToLeft 45 WebTextDirectionLast = WebTextDirectionRightToLeft
46 }; 46 };
47 47
48 #if BLINK_IMPLEMENTATION 48 #if BLINK_IMPLEMENTATION
49 inline WebTextDirection toWebTextDirection(TextDirection direction) { 49 inline WebTextDirection toWebTextDirection(TextDirection direction) {
50 switch (direction) { 50 switch (direction) {
51 case LTR: 51 case TextDirection::Ltr:
52 return WebTextDirectionLeftToRight; 52 return WebTextDirectionLeftToRight;
53 case RTL: 53 case TextDirection::Rtl:
54 return WebTextDirectionRightToLeft; 54 return WebTextDirectionRightToLeft;
55 } 55 }
56 ASSERT_NOT_REACHED(); 56 ASSERT_NOT_REACHED();
57 return WebTextDirectionDefault; 57 return WebTextDirectionDefault;
58 } 58 }
59 #endif 59 #endif
60 60
61 } // namespace blink 61 } // namespace blink
62 62
63 #endif 63 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/PopupMenuImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698