Index: cc/trees/layer_tree_host_pixeltest_masks.cc |
diff --git a/cc/trees/layer_tree_host_pixeltest_masks.cc b/cc/trees/layer_tree_host_pixeltest_masks.cc |
index a79186d02179c0dea345a5b749f6fcb8e0564477..890e94ad6b44a32bdb3b2ff11431406999ea03f9 100644 |
--- a/cc/trees/layer_tree_host_pixeltest_masks.cc |
+++ b/cc/trees/layer_tree_host_pixeltest_masks.cc |
@@ -81,8 +81,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfLayer) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
@@ -98,8 +97,7 @@ TEST_P(LayerTreeHostMasksPixelTest, ImageMaskOfLayer) { |
gfx::Size mask_bounds(50, 50); |
- scoped_refptr<PictureImageLayer> mask = |
- PictureImageLayer::Create(layer_settings()); |
+ scoped_refptr<PictureImageLayer> mask = PictureImageLayer::Create(); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
mask->SetBounds(mask_bounds); |
@@ -131,7 +129,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfClippedLayer) { |
gfx::Rect(100, 100), SK_ColorWHITE); |
// Clip to the top half of the green layer. |
- scoped_refptr<Layer> clip = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> clip = Layer::Create(); |
clip->SetPosition(gfx::PointF()); |
clip->SetBounds(gfx::Size(100, 50)); |
clip->SetMasksToBounds(true); |
@@ -143,8 +141,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfClippedLayer) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
@@ -161,8 +158,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskWithReplica) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
@@ -175,7 +171,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskWithReplica) { |
gfx::Transform replica_transform; |
replica_transform.Rotate(-90.0); |
- scoped_refptr<Layer> replica = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> replica = Layer::Create(); |
replica->SetTransformOrigin(gfx::Point3F(25.f, 25.f, 0.f)); |
replica->SetPosition(gfx::PointF(50.f, 50.f)); |
replica->SetTransform(replica_transform); |
@@ -191,15 +187,14 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskWithReplicaOfClippedLayer) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
// Clip to the bottom half of the green layer, and the left half of the |
// replica. |
- scoped_refptr<Layer> clip = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> clip = Layer::Create(); |
clip->SetPosition(gfx::PointF(0.f, 25.f)); |
clip->SetBounds(gfx::Size(75, 75)); |
clip->SetMasksToBounds(true); |
@@ -213,7 +208,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskWithReplicaOfClippedLayer) { |
gfx::Transform replica_transform; |
replica_transform.Rotate(-90.0); |
- scoped_refptr<Layer> replica = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> replica = Layer::Create(); |
replica->SetTransformOrigin(gfx::Point3F(25.f, 25.f, 0.f)); |
replica->SetPosition(gfx::PointF(50.f, 50.f)); |
replica->SetTransform(replica_transform); |
@@ -230,8 +225,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfReplica) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
@@ -248,7 +242,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfReplica) { |
replica_transform.Rotate(180.0); |
replica_transform.Translate(50.0, 0.0); |
- scoped_refptr<Layer> replica = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> replica = Layer::Create(); |
replica->SetTransformOrigin(gfx::Point3F(50.f, 50.f, 0.f)); |
replica->SetPosition(gfx::PointF()); |
replica->SetTransform(replica_transform); |
@@ -265,14 +259,13 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfReplicaOfClippedLayer) { |
gfx::Size mask_bounds(50, 50); |
MaskContentLayerClient client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
// Clip to the bottom 3/4 of the green layer, and the top 3/4 of the replica. |
- scoped_refptr<Layer> clip = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> clip = Layer::Create(); |
clip->SetPosition(gfx::PointF(0.f, 12.f)); |
clip->SetBounds(gfx::Size(100, 75)); |
clip->SetMasksToBounds(true); |
@@ -290,7 +283,7 @@ TEST_P(LayerTreeHostMasksPixelTest, MaskOfReplicaOfClippedLayer) { |
replica_transform.Rotate(180.0); |
replica_transform.Translate(50.0, 0.0); |
- scoped_refptr<Layer> replica = Layer::Create(layer_settings()); |
+ scoped_refptr<Layer> replica = Layer::Create(); |
replica->SetTransformOrigin(gfx::Point3F(50.f, 50.f, 0.f)); |
replica->SetPosition(gfx::PointF()); |
replica->SetTransform(replica_transform); |
@@ -405,8 +398,7 @@ TEST_P(LayerTreeHostMasksForBackgroundFiltersPixelTest, |
gfx::Size picture_bounds(100, 100); |
CheckerContentLayerClient picture_client(picture_bounds, SK_ColorGREEN, true); |
- scoped_refptr<PictureLayer> picture = |
- PictureLayer::Create(layer_settings(), &picture_client); |
+ scoped_refptr<PictureLayer> picture = PictureLayer::Create(&picture_client); |
picture->SetBounds(picture_bounds); |
picture->SetIsDrawable(true); |
@@ -421,8 +413,7 @@ TEST_P(LayerTreeHostMasksForBackgroundFiltersPixelTest, |
gfx::Size mask_bounds(100, 100); |
CircleContentLayerClient mask_client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &mask_client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&mask_client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |
@@ -455,14 +446,14 @@ TEST_P(LayerTreeHostMasksForBackgroundFiltersPixelTest, |
CheckerContentLayerClient picture_client_vertical( |
picture_bounds, SK_ColorGREEN, true); |
scoped_refptr<PictureLayer> picture_vertical = |
- PictureLayer::Create(layer_settings(), &picture_client_vertical); |
+ PictureLayer::Create(&picture_client_vertical); |
picture_vertical->SetBounds(picture_bounds); |
picture_vertical->SetIsDrawable(true); |
CheckerContentLayerClient picture_client_horizontal( |
picture_bounds, SK_ColorMAGENTA, false); |
scoped_refptr<PictureLayer> picture_horizontal = |
- PictureLayer::Create(layer_settings(), &picture_client_horizontal); |
+ PictureLayer::Create(&picture_client_horizontal); |
picture_horizontal->SetBounds(picture_bounds); |
picture_horizontal->SetIsDrawable(true); |
picture_horizontal->SetContentsOpaque(false); |
@@ -473,8 +464,7 @@ TEST_P(LayerTreeHostMasksForBackgroundFiltersPixelTest, |
gfx::Size mask_bounds(128, 128); |
CircleContentLayerClient mask_client(mask_bounds); |
- scoped_refptr<PictureLayer> mask = |
- PictureLayer::Create(layer_settings(), &mask_client); |
+ scoped_refptr<PictureLayer> mask = PictureLayer::Create(&mask_client); |
mask->SetBounds(mask_bounds); |
mask->SetIsDrawable(true); |
mask->SetIsMask(true); |