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

Unified Diff: third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h

Issue 1401363003: Rename DisplayItemList to PaintController (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h
diff --git a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h
index 813f51ea7090ba26764c37d2f05d591239ba6da4..9d0551814904a511de5114f7e9436df43c4ce0ad 100644
--- a/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h
+++ b/third_party/WebKit/Source/platform/graphics/ContentLayerDelegate.h
@@ -35,16 +35,16 @@ class SkCanvas;
namespace blink {
-class DisplayItemList;
class GraphicsContext;
class IntRect;
+class PaintController;
class PLATFORM_EXPORT GraphicsContextPainter {
public:
virtual void paint(GraphicsContext&, const IntRect& clip) = 0;
// Paints the content if required, either because the content changed or its interest rect has too much unpainted area.
virtual void paintIfNeeded(GraphicsContext&) = 0;
- virtual DisplayItemList* displayItemList() = 0;
+ virtual PaintController* paintController() = 0;
protected:
virtual ~GraphicsContextPainter() { }

Powered by Google App Engine
This is Rietveld 408576698