Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.h

Issue 2767783003: Incorporate ComputedStyle::hasTransform when diffing transform styles. (Closed)
Patch Set: Sync to head. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/PaintLayer.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/paint/PaintLayer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698