Index: cc/picture_layer_impl.cc |
diff --git a/cc/picture_layer_impl.cc b/cc/picture_layer_impl.cc |
index 093e7d4ca6c12b5f4d839ddeeee8086e63f8fa2c..9a9c0434b21da1ad53ca55fca591b9d2ed3970c1 100644 |
--- a/cc/picture_layer_impl.cc |
+++ b/cc/picture_layer_impl.cc |
@@ -160,7 +160,7 @@ void PictureLayerImpl::didUpdateTransforms() { |
last_content_scale_y_ = contentsScaleY(); |
} |
-scoped_refptr<Tile> PictureLayerImpl::CreateTile(PictureLayerTiling*, |
+scoped_refptr<Tile> PictureLayerImpl::CreateTile(PictureLayerTiling* tiling, |
gfx::Rect rect) { |
TileManager* tile_manager = layerTreeHostImpl()->tileManager(); |
@@ -169,7 +169,8 @@ scoped_refptr<Tile> PictureLayerImpl::CreateTile(PictureLayerTiling*, |
pile_.get(), |
rect.size(), |
GL_RGBA, |
- rect)); |
+ rect, |
+ tiling->contents_scale())); |
} |
void PictureLayerImpl::SyncFromActiveLayer(const PictureLayerImpl* other) { |