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

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

Issue 947893002: Implement SVG masking with slimming paint (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Remove spurious change Created 5 years, 10 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 DebugRedFill, 61 DebugRedFill,
62 DragImage, 62 DragImage,
63 LinkHighlight, 63 LinkHighlight,
64 PageOverlay, 64 PageOverlay,
65 PageWidgetDelegateBackgroundFallback, 65 PageWidgetDelegateBackgroundFallback,
66 PopupContainerBorder, 66 PopupContainerBorder,
67 PopupListBoxBackground, 67 PopupListBoxBackground,
68 PopupListBoxRow, 68 PopupListBoxRow,
69 Resizer, 69 Resizer,
70 SVGFilter, 70 SVGFilter,
71 SVGMask,
71 ScrollbarCorner, 72 ScrollbarCorner,
72 ScrollbarHorizontal, 73 ScrollbarHorizontal,
73 ScrollbarTickMark, 74 ScrollbarTickMark,
74 ScrollbarVertical, 75 ScrollbarVertical,
75 SelectionGap, 76 SelectionGap,
76 VideoBitmap, 77 VideoBitmap,
77 ViewBackground, 78 ViewBackground,
78 DrawingLast = ViewBackground, 79 DrawingLast = ViewBackground,
79 80
80 CachedFirst, 81 CachedFirst,
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ; 285 virtual bool isEndAndPairedWith(const DisplayItem& other) const override = 0 ;
285 #endif 286 #endif
286 287
287 private: 288 private:
288 virtual bool isEnd() const override final { return true; } 289 virtual bool isEnd() const override final { return true; }
289 }; 290 };
290 291
291 } // namespace blink 292 } // namespace blink
292 293
293 #endif // DisplayItem_h 294 #endif // DisplayItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698