| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "cc/resources/content_layer_updater.h" | 5 #include "cc/resources/content_layer_updater.h" |
| 6 | 6 |
| 7 #include "base/debug/trace_event.h" | 7 #include "base/debug/trace_event.h" |
| 8 #include "base/time/time.h" | |
| 9 #include "cc/debug/rendering_stats_instrumentation.h" | 8 #include "cc/debug/rendering_stats_instrumentation.h" |
| 10 #include "cc/resources/layer_painter.h" | 9 #include "cc/resources/layer_painter.h" |
| 11 #include "third_party/skia/include/core/SkCanvas.h" | 10 #include "third_party/skia/include/core/SkCanvas.h" |
| 12 #include "third_party/skia/include/core/SkPaint.h" | |
| 13 #include "third_party/skia/include/core/SkRect.h" | 11 #include "third_party/skia/include/core/SkRect.h" |
| 14 #include "third_party/skia/include/core/SkScalar.h" | 12 #include "third_party/skia/include/core/SkScalar.h" |
| 15 #include "ui/gfx/rect_conversions.h" | 13 #include "ui/gfx/geometry/rect_conversions.h" |
| 16 #include "ui/gfx/rect_f.h" | 14 #include "ui/gfx/geometry/rect_f.h" |
| 17 #include "ui/gfx/skia_util.h" | 15 #include "ui/gfx/skia_util.h" |
| 18 | 16 |
| 19 namespace cc { | 17 namespace cc { |
| 20 | 18 |
| 21 ContentLayerUpdater::ContentLayerUpdater( | 19 ContentLayerUpdater::ContentLayerUpdater( |
| 22 scoped_ptr<LayerPainter> painter, | 20 scoped_ptr<LayerPainter> painter, |
| 23 RenderingStatsInstrumentation* stats_instrumentation, | 21 RenderingStatsInstrumentation* stats_instrumentation, |
| 24 int layer_id) | 22 int layer_id) |
| 25 : rendering_stats_instrumentation_(stats_instrumentation), | 23 : rendering_stats_instrumentation_(stats_instrumentation), |
| 26 layer_id_(layer_id), | 24 layer_id_(layer_id), |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 118 |
| 121 void ContentLayerUpdater::SetFillsBoundsCompletely(bool fills_bounds) { | 119 void ContentLayerUpdater::SetFillsBoundsCompletely(bool fills_bounds) { |
| 122 layer_fills_bounds_completely_ = fills_bounds; | 120 layer_fills_bounds_completely_ = fills_bounds; |
| 123 } | 121 } |
| 124 | 122 |
| 125 void ContentLayerUpdater::SetBackgroundColor(SkColor background_color) { | 123 void ContentLayerUpdater::SetBackgroundColor(SkColor background_color) { |
| 126 background_color_ = background_color; | 124 background_color_ = background_color; |
| 127 } | 125 } |
| 128 | 126 |
| 129 } // namespace cc | 127 } // namespace cc |
| OLD | NEW |