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

Side by Side Diff: Source/core/rendering/InlineBox.h

Issue 104593005: Introduce DEFINE_INLINE_BOX_TYPE_CASTS, and use it (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 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 | « no previous file | Source/core/rendering/InlineFlowBox.h » ('j') | 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) 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
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
OLDNEW
« no previous file with comments | « no previous file | Source/core/rendering/InlineFlowBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698