Index: cc/layers/layer_impl.cc |
diff --git a/cc/layers/layer_impl.cc b/cc/layers/layer_impl.cc |
index d4b10897f0497482af52ec77f35de7750bb08667..04ad44ffac56a2d884f5c66f8405f8164252f5c1 100644 |
--- a/cc/layers/layer_impl.cc |
+++ b/cc/layers/layer_impl.cc |
@@ -530,7 +530,6 @@ void LayerImpl::PushPropertiesTo(LayerImpl* layer) { |
layer->SetTransformOrigin(transform_origin_); |
layer->SetBackgroundColor(background_color_); |
layer->SetBounds(bounds_); |
- layer->SetContentBounds(bounds_); |
layer->SetContentsScale(contents_scale_x(), contents_scale_y()); |
layer->SetDoubleSided(double_sided_); |
layer->SetDrawCheckerboardForMissingTiles( |
@@ -1148,10 +1147,6 @@ void LayerImpl::AddDamageRect(const gfx::RectF& damage_rect) { |
damage_rect_ = gfx::UnionRects(damage_rect_, damage_rect); |
} |
-// TODO(danakj): Remove this after impl_side_painting. |
-void LayerImpl::SetContentBounds(const gfx::Size& content_bounds) { |
-} |
- |
void LayerImpl::SetContentsScale(float contents_scale_x, |
float contents_scale_y) { |
if (this->contents_scale_x() == contents_scale_x && |