| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 2 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 } | 417 } |
| 418 #endif | 418 #endif |
| 419 | 419 |
| 420 #ifndef NDEBUG | 420 #ifndef NDEBUG |
| 421 inline void InlineBox::setHasBadParent() | 421 inline void InlineBox::setHasBadParent() |
| 422 { | 422 { |
| 423 m_hasBadParent = true; | 423 m_hasBadParent = true; |
| 424 } | 424 } |
| 425 #endif | 425 #endif |
| 426 | 426 |
| 427 #define DEFINE_INLINE_BOX_TYPE_CASTS(typeName) \ |
| 428 DEFINE_TYPE_CASTS(typeName, InlineBox, box, box->is##typeName(), box.is##typ
eName()) |
| 429 |
| 427 } // namespace WebCore | 430 } // namespace WebCore |
| 428 | 431 |
| 429 #ifndef NDEBUG | 432 #ifndef NDEBUG |
| 430 // Outside the WebCore namespace for ease of invocation from gdb. | 433 // Outside the WebCore namespace for ease of invocation from gdb. |
| 431 void showTree(const WebCore::InlineBox*); | 434 void showTree(const WebCore::InlineBox*); |
| 432 void showLineTree(const WebCore::InlineBox*); | 435 void showLineTree(const WebCore::InlineBox*); |
| 433 #endif | 436 #endif |
| 434 | 437 |
| 435 #endif // InlineBox_h | 438 #endif // InlineBox_h |
| OLD | NEW |