| Index: cc/resources/bitmap_skpicture_content_layer_updater.cc
|
| diff --git a/cc/resources/bitmap_skpicture_content_layer_updater.cc b/cc/resources/bitmap_skpicture_content_layer_updater.cc
|
| index 21fdbbb72bc9bc566869f033bb616996ddcacd7f..afb66a7e9a05b52b0ebe4579ce9b8c920981605c 100644
|
| --- a/cc/resources/bitmap_skpicture_content_layer_updater.cc
|
| +++ b/cc/resources/bitmap_skpicture_content_layer_updater.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/time/time.h"
|
| #include "cc/debug/rendering_stats_instrumentation.h"
|
| -#include "cc/resources/layer_painter.h"
|
| +#include "cc/resources/content_layer_painter.h"
|
| #include "cc/resources/prioritized_resource.h"
|
| #include "cc/resources/resource_update_queue.h"
|
| #include "third_party/skia/include/core/SkCanvas.h"
|
| @@ -40,7 +40,7 @@ void BitmapSkPictureContentLayerUpdater::Resource::Update(
|
|
|
| scoped_refptr<BitmapSkPictureContentLayerUpdater>
|
| BitmapSkPictureContentLayerUpdater::Create(
|
| - scoped_ptr<LayerPainter> painter,
|
| + scoped_ptr<ContentLayerPainter> painter,
|
| RenderingStatsInstrumentation* stats_instrumentation,
|
| int layer_id) {
|
| return make_scoped_refptr(
|
| @@ -50,12 +50,13 @@ BitmapSkPictureContentLayerUpdater::Create(
|
| }
|
|
|
| BitmapSkPictureContentLayerUpdater::BitmapSkPictureContentLayerUpdater(
|
| - scoped_ptr<LayerPainter> painter,
|
| + scoped_ptr<ContentLayerPainter> painter,
|
| RenderingStatsInstrumentation* stats_instrumentation,
|
| int layer_id)
|
| : SkPictureContentLayerUpdater(painter.Pass(),
|
| stats_instrumentation,
|
| - layer_id) {}
|
| + layer_id) {
|
| +}
|
|
|
| BitmapSkPictureContentLayerUpdater::~BitmapSkPictureContentLayerUpdater() {}
|
|
|
|
|