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

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

Issue 2891453003: Incorporate ComputedStyle::hasTransform when diffing transform styles. (Closed)
Patch Set: Created 3 years, 7 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 1232 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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