| Index: services/ui/ws/cursor_unittest.cc
|
| diff --git a/services/ui/ws/cursor_unittest.cc b/services/ui/ws/cursor_unittest.cc
|
| index bfd4008d0a12da110f5d58b140d6e0bf0e3b0ba6..a6c7fefc63c2f58a7b10c46dfd665a241095646b 100644
|
| --- a/services/ui/ws/cursor_unittest.cc
|
| +++ b/services/ui/ws/cursor_unittest.cc
|
| @@ -77,7 +77,7 @@ class CursorTest : public testing::Test {
|
| return nullptr;
|
|
|
| ServerWindow* w = tree->GetWindowByClientId(child_window_id);
|
| - w->SetBounds(gfx::Rect(10, 10, 30, 30));
|
| + w->SetBounds(gfx::Rect(10, 10, 30, 30), cc::LocalFrameId());
|
| w->SetClientArea(gfx::Insets(10, 10), std::vector<gfx::Rect>());
|
| w->SetVisible(true);
|
|
|
| @@ -178,7 +178,7 @@ TEST_F(CursorTest, NonClientToClientByBoundsChange) {
|
| MoveCursorTo(gfx::Point(15, 15));
|
| EXPECT_EQ(mojom::Cursor::EAST_RESIZE, cursor());
|
|
|
| - win->SetBounds(gfx::Rect(0, 0, 30, 30));
|
| + win->SetBounds(gfx::Rect(0, 0, 30, 30), cc::LocalFrameId());
|
| EXPECT_EQ(mojom::Cursor::IBEAM, cursor());
|
| }
|
|
|
|
|