Index: cc/layers/texture_layer.cc |
diff --git a/cc/layers/texture_layer.cc b/cc/layers/texture_layer.cc |
index cf1149b5161ac63a1f818d7c760cf4a938efbe74..87c2c49ec061a153b27fa8ddb39b96c25342f105 100644 |
--- a/cc/layers/texture_layer.cc |
+++ b/cc/layers/texture_layer.cc |
@@ -19,12 +19,14 @@ |
namespace cc { |
scoped_refptr<TextureLayer> TextureLayer::CreateForMailbox( |
+ const LayerSettings& settings, |
TextureLayerClient* client) { |
- return scoped_refptr<TextureLayer>(new TextureLayer(client)); |
+ return scoped_refptr<TextureLayer>(new TextureLayer(settings, client)); |
} |
-TextureLayer::TextureLayer(TextureLayerClient* client) |
- : Layer(), |
+TextureLayer::TextureLayer(const LayerSettings& settings, |
+ TextureLayerClient* client) |
+ : Layer(settings), |
client_(client), |
flipped_(true), |
nearest_neighbor_(false), |