| 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 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1243 std::unique_ptr<PaintLayerStackingNode> m_stackingNode; | 1243 std::unique_ptr<PaintLayerStackingNode> m_stackingNode; |
| 1244 | 1244 |
| 1245 IntSize m_previousScrollOffsetAccumulationForPainting; | 1245 IntSize m_previousScrollOffsetAccumulationForPainting; |
| 1246 RefPtr<ClipRects> m_previousPaintingClipRects; | 1246 RefPtr<ClipRects> m_previousPaintingClipRects; |
| 1247 LayoutRect m_previousPaintDirtyRect; | 1247 LayoutRect m_previousPaintDirtyRect; |
| 1248 | 1248 |
| 1249 std::unique_ptr<PaintLayerRareData> m_rareData; | 1249 std::unique_ptr<PaintLayerRareData> m_rareData; |
| 1250 | 1250 |
| 1251 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, | 1251 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, |
| 1252 DescendantDependentFlagsStopsAtThrottledFrames); | 1252 DescendantDependentFlagsStopsAtThrottledFrames); |
| 1253 FRIEND_TEST_ALL_PREFIXES(PaintLayerTest, |
| 1254 PaintLayerTransformUpdatedOnStyleTransformAnimation); |
| 1253 }; | 1255 }; |
| 1254 | 1256 |
| 1255 } // namespace blink | 1257 } // namespace blink |
| 1256 | 1258 |
| 1257 #ifndef NDEBUG | 1259 #ifndef NDEBUG |
| 1258 // Outside the WebCore namespace for ease of invocation from gdb. | 1260 // Outside the WebCore namespace for ease of invocation from gdb. |
| 1259 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); | 1261 CORE_EXPORT void showLayerTree(const blink::PaintLayer*); |
| 1260 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); | 1262 CORE_EXPORT void showLayerTree(const blink::LayoutObject*); |
| 1261 #endif | 1263 #endif |
| 1262 | 1264 |
| 1263 #endif // Layer_h | 1265 #endif // Layer_h |
| OLD | NEW |