Index: cc/resources/bitmap_content_layer_updater.cc |
diff --git a/cc/resources/bitmap_content_layer_updater.cc b/cc/resources/bitmap_content_layer_updater.cc |
index fff62cf0aca5ca144a27be12614f1100d2815f46..a8a50a3a84ea55ba4f318c60226f13de9f88c30c 100644 |
--- a/cc/resources/bitmap_content_layer_updater.cc |
+++ b/cc/resources/bitmap_content_layer_updater.cc |
@@ -6,7 +6,7 @@ |
#include "cc/debug/devtools_instrumentation.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.h" |
#include "cc/resources/resource_update_queue.h" |
@@ -31,7 +31,7 @@ void BitmapContentLayerUpdater::Resource::Update( |
} |
scoped_refptr<BitmapContentLayerUpdater> BitmapContentLayerUpdater::Create( |
- scoped_ptr<LayerPainter> painter, |
+ scoped_ptr<ContentLayerPainter> painter, |
RenderingStatsInstrumentation* stats_instrumentation, |
int layer_id) { |
return make_scoped_refptr( |
@@ -41,10 +41,11 @@ scoped_refptr<BitmapContentLayerUpdater> BitmapContentLayerUpdater::Create( |
} |
BitmapContentLayerUpdater::BitmapContentLayerUpdater( |
- scoped_ptr<LayerPainter> painter, |
+ scoped_ptr<ContentLayerPainter> painter, |
RenderingStatsInstrumentation* stats_instrumentation, |
int layer_id) |
- : ContentLayerUpdater(painter.Pass(), stats_instrumentation, layer_id) {} |
+ : ContentLayerUpdater(painter.Pass(), stats_instrumentation, layer_id) { |
+} |
BitmapContentLayerUpdater::~BitmapContentLayerUpdater() {} |