| 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 155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 void invalidatePaintForSelection(); | 166 void invalidatePaintForSelection(); |
| 167 | 167 |
| 168 void absoluteRects(Vector<IntRect>&, | 168 void absoluteRects(Vector<IntRect>&, |
| 169 const LayoutPoint& accumulatedOffset) const override; | 169 const LayoutPoint& accumulatedOffset) const override; |
| 170 void absoluteQuads(Vector<FloatQuad>&, | 170 void absoluteQuads(Vector<FloatQuad>&, |
| 171 MapCoordinatesFlags mode = 0) const override; | 171 MapCoordinatesFlags mode = 0) const override; |
| 172 | 172 |
| 173 LayoutRect viewRect() const override; | 173 LayoutRect viewRect() const override; |
| 174 LayoutRect overflowClipRect( | 174 LayoutRect overflowClipRect( |
| 175 const LayoutPoint& location, | 175 const LayoutPoint& location, |
| 176 OverlayScrollbarClipBehavior = | 176 OverlayScrollbarClipBehavior = IgnoreOverlayScrollbarSize) const override; |
| 177 IgnorePlatformOverlayScrollbarSize) const override; | |
| 178 | 177 |
| 179 LayoutState* layoutState() const { return m_layoutState; } | 178 LayoutState* layoutState() const { return m_layoutState; } |
| 180 | 179 |
| 181 void updateHitTestResult(HitTestResult&, const LayoutPoint&) override; | 180 void updateHitTestResult(HitTestResult&, const LayoutPoint&) override; |
| 182 | 181 |
| 183 ViewFragmentationContext* fragmentationContext() const { | 182 ViewFragmentationContext* fragmentationContext() const { |
| 184 return m_fragmentationContext.get(); | 183 return m_fragmentationContext.get(); |
| 185 } | 184 } |
| 186 | 185 |
| 187 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } | 186 LayoutUnit pageLogicalHeight() const { return m_pageLogicalHeight; } |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 unsigned m_hitTestCount; | 326 unsigned m_hitTestCount; |
| 328 unsigned m_hitTestCacheHits; | 327 unsigned m_hitTestCacheHits; |
| 329 Persistent<HitTestCache> m_hitTestCache; | 328 Persistent<HitTestCache> m_hitTestCache; |
| 330 }; | 329 }; |
| 331 | 330 |
| 332 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); | 331 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); |
| 333 | 332 |
| 334 } // namespace blink | 333 } // namespace blink |
| 335 | 334 |
| 336 #endif // LayoutView_h | 335 #endif // LayoutView_h |
| OLD | NEW |