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

Unified Diff: third_party/WebKit/Source/core/paint/ScopeRecorder.cpp

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/core/paint/ScopeRecorder.cpp
diff --git a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp b/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp
index 76236454ee2c284dfaf331220f2dd3d8a4ecfdc8..c70a1ef128864813a2d5eb63a36b90b24de532c2 100644
--- a/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp
+++ b/third_party/WebKit/Source/core/paint/ScopeRecorder.cpp
@@ -7,20 +7,20 @@
#include "core/layout/LayoutObject.h"
#include "platform/graphics/GraphicsContext.h"
-#include "platform/graphics/paint/DisplayItemList.h"
+#include "platform/graphics/paint/PaintController.h"
namespace blink {
ScopeRecorder::ScopeRecorder(GraphicsContext& context)
- : m_displayItemList(context.displayItemList())
+ : m_paintController(context.paintController())
{
- ASSERT(m_displayItemList);
- m_displayItemList->beginScope();
+ ASSERT(m_paintController);
+ m_paintController->beginScope();
}
ScopeRecorder::~ScopeRecorder()
{
- m_displayItemList->endScope();
+ m_paintController->endScope();
}
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/paint/ScopeRecorder.h ('k') | third_party/WebKit/Source/core/paint/ScrollRecorder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698