Index: cc/resources/content_layer_updater.cc |
diff --git a/cc/resources/content_layer_updater.cc b/cc/resources/content_layer_updater.cc |
index f11083b354d26f9f2c5390022433dd232fbdca26..0651e87f9ddb2d55add54ab45bbb35436576a620 100644 |
--- a/cc/resources/content_layer_updater.cc |
+++ b/cc/resources/content_layer_updater.cc |
@@ -6,7 +6,7 @@ |
#include "base/debug/trace_event.h" |
#include "base/time.h" |
-#include "cc/debug/rendering_stats.h" |
+#include "cc/debug/rendering_stats_instrumentation.h" |
#include "cc/resources/layer_painter.h" |
#include "third_party/skia/include/core/SkCanvas.h" |
#include "third_party/skia/include/core/SkPaint.h" |
@@ -17,8 +17,11 @@ |
namespace cc { |
-ContentLayerUpdater::ContentLayerUpdater(scoped_ptr<LayerPainter> painter) |
- : painter_(painter.Pass()) {} |
+ContentLayerUpdater::ContentLayerUpdater( |
+ scoped_ptr<LayerPainter> painter, |
+ RenderingStatsInstrumentation* stats_instrumentation) |
+ : painter_(painter.Pass()), |
+ rendering_stats_instrumentation_(stats_instrumentation) {} |
ContentLayerUpdater::~ContentLayerUpdater() {} |