| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 LayoutObject* selectionStart(); | 121 LayoutObject* selectionStart(); |
| 122 LayoutObject* selectionEnd(); | 122 LayoutObject* selectionEnd(); |
| 123 IntRect selectionBounds(); | 123 IntRect selectionBounds(); |
| 124 void selectionStartEnd(int& startPos, int& endPos); | 124 void selectionStartEnd(int& startPos, int& endPos); |
| 125 void invalidatePaintForSelection(); | 125 void invalidatePaintForSelection(); |
| 126 | 126 |
| 127 void absoluteRects(Vector<IntRect>&, const LayoutPoint& accumulatedOffset) c
onst override; | 127 void absoluteRects(Vector<IntRect>&, const LayoutPoint& accumulatedOffset) c
onst override; |
| 128 void absoluteQuads(Vector<FloatQuad>&) const override; | 128 void absoluteQuads(Vector<FloatQuad>&) const override; |
| 129 | 129 |
| 130 LayoutRect viewRect() const override; | 130 LayoutRect viewRect() const override; |
| 131 LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScrollbarSiz
eRelevancy = IgnoreOverlayScrollbarSize) const override; | 131 LayoutRect overflowClipRect(const LayoutPoint& location, OverlayScrollbarCli
pBehavior = IgnoreOverlayScrollbarSize) const override; |
| 132 | 132 |
| 133 bool shouldDoFullPaintInvalidationForNextLayout() const; | 133 bool shouldDoFullPaintInvalidationForNextLayout() const; |
| 134 bool doingFullPaintInvalidation() const; | 134 bool doingFullPaintInvalidation() const; |
| 135 | 135 |
| 136 LayoutState* layoutState() const { return m_layoutState; } | 136 LayoutState* layoutState() const { return m_layoutState; } |
| 137 | 137 |
| 138 void updateHitTestResult(HitTestResult&, const LayoutPoint&) override; | 138 void updateHitTestResult(HitTestResult&, const LayoutPoint&) override; |
| 139 | 139 |
| 140 ViewFragmentationContext* fragmentationContext() const { return m_fragmentat
ionContext.get(); } | 140 ViewFragmentationContext* fragmentationContext() const { return m_fragmentat
ionContext.get(); } |
| 141 | 141 |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 Persistent<HitTestCache> m_hitTestCache; | 273 Persistent<HitTestCache> m_hitTestCache; |
| 274 | 274 |
| 275 Vector<LayoutMedia*> m_mediaForPositionNotification; | 275 Vector<LayoutMedia*> m_mediaForPositionNotification; |
| 276 }; | 276 }; |
| 277 | 277 |
| 278 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); | 278 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); |
| 279 | 279 |
| 280 } // namespace blink | 280 } // namespace blink |
| 281 | 281 |
| 282 #endif // LayoutView_h | 282 #endif // LayoutView_h |
| OLD | NEW |