| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2009 Apple 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 namespace blink { | 36 namespace blink { |
| 37 | 37 |
| 38 class CullRect; | 38 class CullRect; |
| 39 class HitTestLocation; | 39 class HitTestLocation; |
| 40 class HitTestResult; | 40 class HitTestResult; |
| 41 class InlineFlowBox; | 41 class InlineFlowBox; |
| 42 class LayoutPoint; | 42 class LayoutPoint; |
| 43 class LayoutUnit; | 43 class LayoutUnit; |
| 44 class LineLayoutBoxModel; | 44 class LineLayoutBoxModel; |
| 45 class LineLayoutItem; | 45 class LineLayoutItem; |
| 46 struct PaintInfo; | |
| 47 | 46 |
| 48 class LineBoxList { | 47 class LineBoxList { |
| 49 DISALLOW_NEW(); | 48 DISALLOW_NEW(); |
| 50 | 49 |
| 51 public: | 50 public: |
| 52 LineBoxList() : m_firstLineBox(nullptr), m_lastLineBox(nullptr) {} | 51 LineBoxList() : m_firstLineBox(nullptr), m_lastLineBox(nullptr) {} |
| 53 | 52 |
| 54 #if ENABLE(ASSERT) | 53 #if ENABLE(ASSERT) |
| 55 ~LineBoxList(); | 54 ~LineBoxList(); |
| 56 #endif | 55 #endif |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 101 InlineFlowBox* m_lastLineBox; | 100 InlineFlowBox* m_lastLineBox; |
| 102 }; | 101 }; |
| 103 | 102 |
| 104 #if !ENABLE(ASSERT) | 103 #if !ENABLE(ASSERT) |
| 105 inline void LineBoxList::checkConsistency() const {} | 104 inline void LineBoxList::checkConsistency() const {} |
| 106 #endif | 105 #endif |
| 107 | 106 |
| 108 } // namespace blink | 107 } // namespace blink |
| 109 | 108 |
| 110 #endif // LineBoxList_h | 109 #endif // LineBoxList_h |
| OLD | NEW |