| OLD | NEW |
| 1 /** | 1 /** |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2004, 2005, 2006, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) | 5 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) |
| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 } | 45 } |
| 46 | 46 |
| 47 BidiRun* next() { return static_cast<BidiRun*>(m_next); } | 47 BidiRun* next() { return static_cast<BidiRun*>(m_next); } |
| 48 LayoutObject* object() { return m_object; } | 48 LayoutObject* object() { return m_object; } |
| 49 | 49 |
| 50 public: | 50 public: |
| 51 LayoutObject* m_object; | 51 LayoutObject* m_object; |
| 52 InlineBox* m_box; | 52 InlineBox* m_box; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } | 55 } // namespace blink |
| 56 | 56 |
| 57 #endif // BidiRun_h | 57 #endif // BidiRun_h |
| OLD | NEW |