| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. | 3 * Copyright (C) 2013 Intel Corporation. All rights reserved. |
| 4 * | 4 * |
| 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. | 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. |
| 6 * | 6 * |
| 7 * Other contributors: | 7 * Other contributors: |
| 8 * Robert O'Callahan <roc+@cs.cmu.edu> | 8 * Robert O'Callahan <roc+@cs.cmu.edu> |
| 9 * David Baron <dbaron@fas.harvard.edu> | 9 * David Baron <dbaron@fas.harvard.edu> |
| 10 * Christian Biesinger <cbiesinger@web.de> | 10 * Christian Biesinger <cbiesinger@web.de> |
| (...skipping 1224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1235 std::unique_ptr<PaintLayerStackingNode> m_stackingNode; | 1235 std::unique_ptr<PaintLayerStackingNode> m_stackingNode; |
| 1236 | 1236 |
| 1237 IntSize m_previousScrollOffsetAccumulationForPainting; | 1237 IntSize m_previousScrollOffsetAccumulationForPainting; |
| 1238 RefPtr<ClipRects> m_previousPaintingClipRects; | 1238 RefPtr<ClipRects> m_previousPaintingClipRects; |
| 1239 LayoutRect m_previousPaintDirtyRect; | 1239 LayoutRect m_previousPaintDirtyRect; |
| 1240 | 1240 |
| 1241 std::unique_ptr<PaintLayerRareData> m_rareData; | 1241 std::unique_ptr<PaintLayerRareData> m_rareData; |
| 1242 | 1242 |
| 1243 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, | 1243 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, |
| 1244 DescendantDependentFlagsStopsAtThrottledFrames); | 1244 DescendantDependentFlagsStopsAtThrottledFrames); |
| 1245 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, |
| 1246 PaintLayerTransformUpdatedOnStyleTransformAnimation); |
| 1245 }; | 1247 }; |
| 1246 | 1248 |
| 1247 } // namespace blink | 1249 } // namespace blink |
| 1248 | 1250 |
| 1249 #ifndef NDEBUG | 1251 #ifndef NDEBUG |
| 1250 // Outside the WebCore namespace for ease of invocation from gdb. | 1252 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1251 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); | 1253 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); |
| 1252 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); | 1254 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); |
| 1253 #endif | 1255 #endif |
| 1254 | 1256 |
| 1255 #endif // Layer_h | 1257 #endif // Layer_h |
| OLD | NEW |