| Index: services/ui/ws/window_coordinate_conversions_unittest.cc
|
| diff --git a/services/ui/ws/window_coordinate_conversions_unittest.cc b/services/ui/ws/window_coordinate_conversions_unittest.cc
|
| index 6cdebff89efd763d66d10fe562959640098c7291..fcb0ff512961faa8ca49bf8dcf0c033bbe674c4f 100644
|
| --- a/services/ui/ws/window_coordinate_conversions_unittest.cc
|
| +++ b/services/ui/ws/window_coordinate_conversions_unittest.cc
|
| @@ -20,9 +20,9 @@ using WindowCoordinateConversionsTest = testing::Test;
|
| TEST_F(WindowCoordinateConversionsTest, ConvertRectBetweenWindows) {
|
| TestServerWindowDelegate d1, d2, d3;
|
| ServerWindow v1(&d1, WindowId()), v2(&d2, WindowId()), v3(&d3, WindowId());
|
| - v1.SetBounds(gfx::Rect(1, 2, 100, 100));
|
| - v2.SetBounds(gfx::Rect(3, 4, 100, 100));
|
| - v3.SetBounds(gfx::Rect(5, 6, 100, 100));
|
| + v1.SetBounds(gfx::Rect(1, 2, 100, 100), cc::LocalFrameId());
|
| + v2.SetBounds(gfx::Rect(3, 4, 100, 100), cc::LocalFrameId());
|
| + v3.SetBounds(gfx::Rect(5, 6, 100, 100), cc::LocalFrameId());
|
| v1.Add(&v2);
|
| v2.Add(&v3);
|
|
|
| @@ -36,9 +36,9 @@ TEST_F(WindowCoordinateConversionsTest, ConvertRectBetweenWindows) {
|
| TEST_F(WindowCoordinateConversionsTest, ConvertPointFBetweenWindows) {
|
| TestServerWindowDelegate d1, d2, d3;
|
| ServerWindow v1(&d1, WindowId()), v2(&d2, WindowId()), v3(&d3, WindowId());
|
| - v1.SetBounds(gfx::Rect(1, 2, 100, 100));
|
| - v2.SetBounds(gfx::Rect(3, 4, 100, 100));
|
| - v3.SetBounds(gfx::Rect(5, 6, 100, 100));
|
| + v1.SetBounds(gfx::Rect(1, 2, 100, 100), cc::LocalFrameId());
|
| + v2.SetBounds(gfx::Rect(3, 4, 100, 100), cc::LocalFrameId());
|
| + v3.SetBounds(gfx::Rect(5, 6, 100, 100), cc::LocalFrameId());
|
| v1.Add(&v2);
|
| v2.Add(&v3);
|
|
|
|
|