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

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

Issue 2271883002: Fix paint invalidation and painting for composited-scrolling input elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: none 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
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp ('k') | no next file » | 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/ContiguousContainer.h" 9 #include "platform/graphics/ContiguousContainer.h"
10 #include "platform/graphics/paint/DisplayItemClient.h" 10 #include "platform/graphics/paint/DisplayItemClient.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 ColumnRules, 65 ColumnRules,
66 DebugDrawing, 66 DebugDrawing,
67 DocumentBackground, 67 DocumentBackground,
68 DragImage, 68 DragImage,
69 DragCaret,
69 SVGImage, 70 SVGImage,
70 LinkHighlight, 71 LinkHighlight,
71 ImageAreaFocusRing, 72 ImageAreaFocusRing,
72 PageOverlay, 73 PageOverlay,
73 PageWidgetDelegateBackgroundFallback, 74 PageWidgetDelegateBackgroundFallback,
74 PopupContainerBorder, 75 PopupContainerBorder,
75 PopupListBoxBackground, 76 PopupListBoxBackground,
76 PopupListBoxRow, 77 PopupListBoxRow,
77 PrintedContentBackground, 78 PrintedContentBackground,
78 PrintedContentDestinationLocations, 79 PrintedContentDestinationLocations,
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
380 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0; 381 bool isEndAndPairedWith(DisplayItem::Type otherType) const override = 0;
381 #endif 382 #endif
382 383
383 private: 384 private:
384 bool isEnd() const final { return true; } 385 bool isEnd() const final { return true; }
385 }; 386 };
386 387
387 } // namespace blink 388 } // namespace blink
388 389
389 #endif // DisplayItem_h 390 #endif // DisplayItem_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/paint/PaintLayerScrollableArea.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698