| 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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 void updateFromStyle() override; | 223 void updateFromStyle() override; |
| 224 bool allowsOverflowClip() const override; | 224 bool allowsOverflowClip() const override; |
| 225 | 225 |
| 226 friend class ForceHorriblySlowRectMapping; | 226 friend class ForceHorriblySlowRectMapping; |
| 227 | 227 |
| 228 bool shouldUsePrintingLayout() const; | 228 bool shouldUsePrintingLayout() const; |
| 229 | 229 |
| 230 int viewLogicalWidthForBoxSizing() const; | 230 int viewLogicalWidthForBoxSizing() const; |
| 231 int viewLogicalHeightForBoxSizing() const; | 231 int viewLogicalHeightForBoxSizing() const; |
| 232 | 232 |
| 233 RawPtrWillBeUntracedMember<FrameView> m_frameView; | 233 UntracedMember<FrameView> m_frameView; |
| 234 | 234 |
| 235 // The current selection represented as 2 boundaries. | 235 // The current selection represented as 2 boundaries. |
| 236 // Selection boundaries are represented in LayoutView by a tuple | 236 // Selection boundaries are represented in LayoutView by a tuple |
| 237 // (LayoutObject, DOM node offset). | 237 // (LayoutObject, DOM node offset). |
| 238 // See http://www.w3.org/TR/dom/#range for more information. | 238 // See http://www.w3.org/TR/dom/#range for more information. |
| 239 // | 239 // |
| 240 // |m_selectionStartPos| and |m_selectionEndPos| are only valid for | 240 // |m_selectionStartPos| and |m_selectionEndPos| are only valid for |
| 241 // |Text| node without 'transform' or 'first-letter'. | 241 // |Text| node without 'transform' or 'first-letter'. |
| 242 // | 242 // |
| 243 // Those are used for selection painting and paint invalidation upon | 243 // Those are used for selection painting and paint invalidation upon |
| (...skipping 21 matching lines...) Expand all Loading... |
| 265 | 265 |
| 266 OwnPtr<ViewFragmentationContext> m_fragmentationContext; | 266 OwnPtr<ViewFragmentationContext> m_fragmentationContext; |
| 267 OwnPtr<PaintLayerCompositor> m_compositor; | 267 OwnPtr<PaintLayerCompositor> m_compositor; |
| 268 RefPtr<IntervalArena> m_intervalArena; | 268 RefPtr<IntervalArena> m_intervalArena; |
| 269 | 269 |
| 270 LayoutQuote* m_layoutQuoteHead; | 270 LayoutQuote* m_layoutQuoteHead; |
| 271 unsigned m_layoutCounterCount; | 271 unsigned m_layoutCounterCount; |
| 272 | 272 |
| 273 unsigned m_hitTestCount; | 273 unsigned m_hitTestCount; |
| 274 unsigned m_hitTestCacheHits; | 274 unsigned m_hitTestCacheHits; |
| 275 OwnPtrWillBePersistent<HitTestCache> m_hitTestCache; | 275 Persistent<HitTestCache> m_hitTestCache; |
| 276 | 276 |
| 277 Vector<LayoutMedia*> m_mediaForPositionNotification; | 277 Vector<LayoutMedia*> m_mediaForPositionNotification; |
| 278 }; | 278 }; |
| 279 | 279 |
| 280 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); | 280 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); |
| 281 | 281 |
| 282 } // namespace blink | 282 } // namespace blink |
| 283 | 283 |
| 284 #endif // LayoutView_h | 284 #endif // LayoutView_h |
| OLD | NEW |