| Index: third_party/WebKit/Source/core/compositing/DisplayListCompositingBuilder.h
|
| diff --git a/third_party/WebKit/Source/core/compositing/DisplayListCompositingBuilder.h b/third_party/WebKit/Source/core/compositing/DisplayListCompositingBuilder.h
|
| index 6a38379fdf9fc547d050d02df3261c898cfeeff3..ef159c58e79bab45a909474f00504bb4ae9725d4 100644
|
| --- a/third_party/WebKit/Source/core/compositing/DisplayListCompositingBuilder.h
|
| +++ b/third_party/WebKit/Source/core/compositing/DisplayListCompositingBuilder.h
|
| @@ -7,19 +7,19 @@
|
|
|
| #include "core/CoreExport.h"
|
| #include "platform/graphics/CompositedDisplayList.h"
|
| -#include "platform/graphics/paint/DisplayItemList.h"
|
| +#include "platform/graphics/paint/PaintController.h"
|
|
|
| namespace blink {
|
|
|
| class CORE_EXPORT DisplayListCompositingBuilder {
|
| public:
|
| - DisplayListCompositingBuilder(const DisplayItemList& displayItemList)
|
| - : m_displayItemList(displayItemList) { }
|
| + DisplayListCompositingBuilder(const PaintController& paintController)
|
| + : m_paintController(paintController) { }
|
|
|
| void build(CompositedDisplayList&);
|
|
|
| private:
|
| - const DisplayItemList& m_displayItemList;
|
| + const PaintController& m_paintController;
|
| };
|
|
|
| } // namespace blink
|
|
|