diff options
Diffstat (limited to 'cc/layer_sorter_unittest.cc')
-rw-r--r-- | cc/layer_sorter_unittest.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/cc/layer_sorter_unittest.cc b/cc/layer_sorter_unittest.cc index 2a41e85..6c54fc5 100644 --- a/cc/layer_sorter_unittest.cc +++ b/cc/layer_sorter_unittest.cc @@ -214,28 +214,28 @@ TEST(LayerSorterTest, verifyExistingOrderingPreservedWhenNoZDiff) WebTransformationMatrix FrontMatrix; FrontMatrix.translate3d(0, 0, 1); - layer1->setBounds(IntSize(10, 10)); - layer1->setContentBounds(IntSize(10, 10)); + layer1->setBounds(gfx::Size(10, 10)); + layer1->setContentBounds(gfx::Size(10, 10)); layer1->setDrawTransform(BehindMatrix); layer1->setDrawsContent(true); - layer2->setBounds(IntSize(20, 20)); - layer2->setContentBounds(IntSize(20, 20)); + layer2->setBounds(gfx::Size(20, 20)); + layer2->setContentBounds(gfx::Size(20, 20)); layer2->setDrawTransform(BehindMatrix); layer2->setDrawsContent(true); - layer3->setBounds(IntSize(30, 30)); - layer3->setContentBounds(IntSize(30, 30)); + layer3->setBounds(gfx::Size(30, 30)); + layer3->setContentBounds(gfx::Size(30, 30)); layer3->setDrawTransform(FrontMatrix); layer3->setDrawsContent(true); - layer4->setBounds(IntSize(40, 40)); - layer4->setContentBounds(IntSize(40, 40)); + layer4->setBounds(gfx::Size(40, 40)); + layer4->setContentBounds(gfx::Size(40, 40)); layer4->setDrawTransform(FrontMatrix); layer4->setDrawsContent(true); - layer5->setBounds(IntSize(50, 50)); - layer5->setContentBounds(IntSize(50, 50)); + layer5->setBounds(gfx::Size(50, 50)); + layer5->setContentBounds(gfx::Size(50, 50)); layer5->setDrawTransform(BehindMatrix); layer5->setDrawsContent(true); |