| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * Copyright (C) 2006 Apple Computer, Inc. | 3 * Copyright (C) 2006 Apple Computer, Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 | 133 |
| 134 bool MapToVisualRectInAncestorSpaceInternal( | 134 bool MapToVisualRectInAncestorSpaceInternal( |
| 135 const LayoutBoxModelObject* ancestor, | 135 const LayoutBoxModelObject* ancestor, |
| 136 TransformState&, | 136 TransformState&, |
| 137 VisualRectFlags = kDefaultVisualRectFlags) const override; | 137 VisualRectFlags = kDefaultVisualRectFlags) const override; |
| 138 LayoutSize OffsetForFixedPosition(bool include_pending_scroll = false) const; | 138 LayoutSize OffsetForFixedPosition(bool include_pending_scroll = false) const; |
| 139 | 139 |
| 140 void InvalidatePaintForViewAndCompositedLayers(); | 140 void InvalidatePaintForViewAndCompositedLayers(); |
| 141 | 141 |
| 142 PaintInvalidationReason InvalidatePaint( | 142 PaintInvalidationReason InvalidatePaint( |
| 143 const PaintInvalidationState&) override; | |
| 144 PaintInvalidationReason InvalidatePaint( | |
| 145 const PaintInvalidatorContext&) const override; | 143 const PaintInvalidatorContext&) const override; |
| 146 | 144 |
| 147 void Paint(const PaintInfo&, const LayoutPoint&) const override; | 145 void Paint(const PaintInfo&, const LayoutPoint&) const override; |
| 148 void PaintBoxDecorationBackground(const PaintInfo&, | 146 void PaintBoxDecorationBackground(const PaintInfo&, |
| 149 const LayoutPoint&) const override; | 147 const LayoutPoint&) const override; |
| 150 | 148 |
| 151 void ClearSelection(); | 149 void ClearSelection(); |
| 152 void CommitPendingSelection(); | 150 void CommitPendingSelection(); |
| 153 | 151 |
| 154 void AbsoluteRects(Vector<IntRect>&, | 152 void AbsoluteRects(Vector<IntRect>&, |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 unsigned hit_test_count_; | 296 unsigned hit_test_count_; |
| 299 unsigned hit_test_cache_hits_; | 297 unsigned hit_test_cache_hits_; |
| 300 Persistent<HitTestCache> hit_test_cache_; | 298 Persistent<HitTestCache> hit_test_cache_; |
| 301 }; | 299 }; |
| 302 | 300 |
| 303 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, IsLayoutView()); | 301 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, IsLayoutView()); |
| 304 | 302 |
| 305 } // namespace blink | 303 } // namespace blink |
| 306 | 304 |
| 307 #endif // LayoutView_h | 305 #endif // LayoutView_h |
| OLD | NEW |