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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.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/paint/DisplayItemCacheSkipper.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
index 7cae9b904dc5399209effaed3d976356b56dcf15..33d7328604fbd36dbdf0255f6a739b4e0d548fa8 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/DisplayItemCacheSkipper.h
@@ -6,7 +6,7 @@
#define DisplayItemCacheSkipper_h
#include "platform/graphics/GraphicsContext.h"
-#include "platform/graphics/paint/DisplayItemList.h"
+#include "platform/graphics/paint/PaintController.h"
namespace blink {
@@ -15,11 +15,11 @@ public:
DisplayItemCacheSkipper(GraphicsContext& context)
: m_context(context)
{
- context.displayItemList()->beginSkippingCache();
+ context.paintController()->beginSkippingCache();
}
~DisplayItemCacheSkipper()
{
- m_context.displayItemList()->endSkippingCache();
+ m_context.paintController()->endSkippingCache();
}
private:

Powered by Google App Engine
This is Rietveld 408576698