| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 2000 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. | 3 * Copyright (C) 2003, 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. |
| 4 * All right reserved. | 4 * All right reserved. |
| 5 * Copyright (C) 2010 Google Inc. All rights reserved. | 5 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 */ | 22 */ |
| 23 | 23 |
| 24 #ifndef InlineIterator_h | 24 #ifndef InlineIterator_h |
| 25 #define InlineIterator_h | 25 #define InlineIterator_h |
| 26 | 26 |
| 27 #include "core/layout/BidiRun.h" | 27 #include "core/layout/BidiRun.h" |
| 28 #include "core/layout/LayoutBlockFlow.h" | 28 #include "core/layout/LayoutBlockFlow.h" |
| 29 #include "core/layout/api/LineLayoutBlockFlow.h" | 29 #include "core/layout/api/LineLayoutBlockFlow.h" |
| 30 #include "core/layout/api/LineLayoutInline.h" | 30 #include "core/layout/api/LineLayoutInline.h" |
| 31 #include "core/layout/api/LineLayoutText.h" | 31 #include "core/layout/api/LineLayoutText.h" |
| 32 #include "wtf/Allocator.h" | 32 #include "platform/wtf/Allocator.h" |
| 33 #include "wtf/StdLibExtras.h" | 33 #include "platform/wtf/StdLibExtras.h" |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 struct BidiIsolatedRun { | 37 struct BidiIsolatedRun { |
| 38 BidiIsolatedRun(LineLayoutItem object, | 38 BidiIsolatedRun(LineLayoutItem object, |
| 39 unsigned position, | 39 unsigned position, |
| 40 LineLayoutItem& root, | 40 LineLayoutItem& root, |
| 41 BidiRun& run_to_replace, | 41 BidiRun& run_to_replace, |
| 42 unsigned char level) | 42 unsigned char level) |
| 43 : object(object), | 43 : object(object), |
| (...skipping 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 900 sor_ = eor_; | 900 sor_ = eor_; |
| 901 } | 901 } |
| 902 | 902 |
| 903 direction_ = WTF::Unicode::kOtherNeutral; | 903 direction_ = WTF::Unicode::kOtherNeutral; |
| 904 status_.eor = WTF::Unicode::kOtherNeutral; | 904 status_.eor = WTF::Unicode::kOtherNeutral; |
| 905 } | 905 } |
| 906 | 906 |
| 907 } // namespace blink | 907 } // namespace blink |
| 908 | 908 |
| 909 #endif // InlineIterator_h | 909 #endif // InlineIterator_h |
| OLD | NEW |