| 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 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 249 |
| 250 const LayoutObject* pushMappingToContainer( | 250 const LayoutObject* pushMappingToContainer( |
| 251 const LayoutBoxModelObject* ancestorToStopAt, | 251 const LayoutBoxModelObject* ancestorToStopAt, |
| 252 LayoutGeometryMap&) const override; | 252 LayoutGeometryMap&) const override; |
| 253 void mapAncestorToLocal(const LayoutBoxModelObject*, | 253 void mapAncestorToLocal(const LayoutBoxModelObject*, |
| 254 TransformState&, | 254 TransformState&, |
| 255 MapCoordinatesFlags) const override; | 255 MapCoordinatesFlags) const override; |
| 256 void computeSelfHitTestRects(Vector<LayoutRect>&, | 256 void computeSelfHitTestRects(Vector<LayoutRect>&, |
| 257 const LayoutPoint& layerOffset) const override; | 257 const LayoutPoint& layerOffset) const override; |
| 258 | 258 |
| 259 bool canHaveChildren() const override; | |
| 260 | |
| 261 void layoutContent(); | 259 void layoutContent(); |
| 262 #if DCHECK_IS_ON() | 260 #if DCHECK_IS_ON() |
| 263 void checkLayoutState(); | 261 void checkLayoutState(); |
| 264 #endif | 262 #endif |
| 265 | 263 |
| 266 void updateFromStyle() override; | 264 void updateFromStyle() override; |
| 267 bool allowsOverflowClip() const override; | 265 bool allowsOverflowClip() const override; |
| 268 | 266 |
| 269 bool shouldUsePrintingLayout() const; | 267 bool shouldUsePrintingLayout() const; |
| 270 | 268 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 unsigned m_hitTestCount; | 313 unsigned m_hitTestCount; |
| 316 unsigned m_hitTestCacheHits; | 314 unsigned m_hitTestCacheHits; |
| 317 Persistent<HitTestCache> m_hitTestCache; | 315 Persistent<HitTestCache> m_hitTestCache; |
| 318 }; | 316 }; |
| 319 | 317 |
| 320 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); | 318 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutView, isLayoutView()); |
| 321 | 319 |
| 322 } // namespace blink | 320 } // namespace blink |
| 323 | 321 |
| 324 #endif // LayoutView_h | 322 #endif // LayoutView_h |
| OLD | NEW |