| Index: components/exo/display.cc
|
| diff --git a/components/exo/display.cc b/components/exo/display.cc
|
| index 4216d8af9a2a8c148c081b031a15fa8bdf161880..44b975a24256036c792f93acae4a79d0cd3aa28c 100644
|
| --- a/components/exo/display.cc
|
| +++ b/components/exo/display.cc
|
| @@ -179,6 +179,7 @@ std::unique_ptr<ShellSurface> Display::CreatePopupShellSurface(
|
|
|
| std::unique_ptr<ShellSurface> Display::CreateRemoteShellSurface(
|
| Surface* surface,
|
| + const gfx::Point& origin,
|
| int container) {
|
| TRACE_EVENT2("exo", "Display::CreateRemoteShellSurface", "surface",
|
| surface->AsTracedValue(), "container", container);
|
| @@ -192,7 +193,7 @@ std::unique_ptr<ShellSurface> Display::CreateRemoteShellSurface(
|
| bool can_minimize = container != ash::kShellWindowId_SystemModalContainer;
|
|
|
| return base::MakeUnique<ShellSurface>(
|
| - surface, nullptr, ShellSurface::BoundsMode::CLIENT, gfx::Point(),
|
| + surface, nullptr, ShellSurface::BoundsMode::CLIENT, origin,
|
| true /* activatable */, can_minimize, container);
|
| }
|
|
|
|
|