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

Side by Side Diff: Source/platform/graphics/paint/DisplayItem.h

Issue 1110063006: Revert "Correct fixed-position recording for Slimming Paint" (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/graphics/paint/DisplayItem.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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DisplayItem_h 5 #ifndef DisplayItem_h
6 #define DisplayItem_h 6 #define DisplayItem_h
7 7
8 #include "platform/PlatformExport.h" 8 #include "platform/PlatformExport.h"
9 #include "platform/graphics/paint/DisplayItemClient.h" 9 #include "platform/graphics/paint/DisplayItemClient.h"
10 #include "wtf/Assertions.h" 10 #include "wtf/Assertions.h"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 EndTransform3DLast = EndTransform3DFirst + Transform3DLast - Transform3D First, 140 EndTransform3DLast = EndTransform3DFirst + Transform3DLast - Transform3D First,
141 141
142 BeginFilter, 142 BeginFilter,
143 EndFilter, 143 EndFilter,
144 BeginCompositing, 144 BeginCompositing,
145 EndCompositing, 145 EndCompositing,
146 BeginTransform, 146 BeginTransform,
147 EndTransform, 147 EndTransform,
148 BeginClipPath, 148 BeginClipPath,
149 EndClipPath, 149 EndClipPath,
150 BeginFixedPosition,
151 EndFixedPosition,
152 BeginFixedPositionContainer,
153 EndFixedPositionContainer,
154 150
155 SubtreeCachedFirst, 151 SubtreeCachedFirst,
156 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst, 152 SubtreeCachedPaintPhaseFirst = SubtreeCachedFirst,
157 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM ax, 153 SubtreeCachedPaintPhaseLast = SubtreeCachedPaintPhaseFirst + PaintPhaseM ax,
158 SubtreeCachedLast = SubtreeCachedPaintPhaseLast, 154 SubtreeCachedLast = SubtreeCachedPaintPhaseLast,
159 155
160 BeginSubtreeFirst, 156 BeginSubtreeFirst,
161 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst, 157 BeginSubtreePaintPhaseFirst = BeginSubtreeFirst,
162 BeginSubtreePaintPhaseLast = BeginSubtreePaintPhaseFirst + PaintPhaseMax , 158 BeginSubtreePaintPhaseLast = BeginSubtreePaintPhaseFirst + PaintPhaseMax ,
163 BeginSubtreeLast = BeginSubtreePaintPhaseLast, 159 BeginSubtreeLast = BeginSubtreePaintPhaseLast,
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ; 306 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ;
311 #endif 307 #endif
312 308
313 private: 309 private:
314 virtual bool isEnd() const override final { return true; } 310 virtual bool isEnd() const override final { return true; }
315 }; 311 };
316 312
317 } // namespace blink 313 } // namespace blink
318 314
319 #endif // DisplayItem_h 315 #endif // DisplayItem_h
OLDNEW
« no previous file with comments | « Source/platform/blink_platform.gypi ('k') | Source/platform/graphics/paint/DisplayItem.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698