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

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

Issue 2292353003: Cherry-pick r415013 to M53. (Closed)
Patch Set: Created 4 years, 3 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/ContiguousContainer.h" 9 #include "platform/graphics/ContiguousContainer.h"
10 #include "platform/graphics/paint/DisplayItemClient.h" 10 #include "platform/graphics/paint/DisplayItemClient.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 // - enum value <Category>First; 55 // - enum value <Category>First;
56 // - enum value <Category>Last = <Category>First + <BaseCategory>Last - <B aseCategory>First; 56 // - enum value <Category>Last = <Category>First + <BaseCategory>Last - <B aseCategory>First;
57 // - DEFINE_CONVERSION_METHODS(<Category>, <category>, <BaseCategory>, <base Category>) to define methods to 57 // - DEFINE_CONVERSION_METHODS(<Category>, <category>, <BaseCategory>, <base Category>) to define methods to
58 // convert types between the categories; 58 // convert types between the categories;
59 enum Type { 59 enum Type {
60 DrawingFirst, 60 DrawingFirst,
61 DrawingPaintPhaseFirst = DrawingFirst, 61 DrawingPaintPhaseFirst = DrawingFirst,
62 DrawingPaintPhaseLast = DrawingFirst + PaintPhaseMax, 62 DrawingPaintPhaseLast = DrawingFirst + PaintPhaseMax,
63 BoxDecorationBackground, 63 BoxDecorationBackground,
64 Caret, 64 Caret,
65 DragCaret,
65 ColumnRules, 66 ColumnRules,
66 DebugDrawing, 67 DebugDrawing,
67 DebugRedFill, 68 DebugRedFill,
68 DocumentBackground, 69 DocumentBackground,
69 DragImage, 70 DragImage,
70 SVGImage, 71 SVGImage,
71 LinkHighlight, 72 LinkHighlight,
72 ImageAreaFocusRing, 73 ImageAreaFocusRing,
73 PageOverlay, 74 PageOverlay,
74 PageWidgetDelegateBackgroundFallback, 75 PageWidgetDelegateBackgroundFallback,
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; 398 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0;
398 #endif 399 #endif
399 400
400 private: 401 private:
401 bool isEnd() const final { return true; } 402 bool isEnd() const final { return true; }
402 }; 403 };
403 404
404 } // namespace blink 405 } // namespace blink
405 406
406 #endif // DisplayItem_h 407 #endif // DisplayItem_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698