| Index: components/exo/display.cc
|
| diff --git a/components/exo/display.cc b/components/exo/display.cc
|
| index cf093420279ac86e2668d4b684d4cff0e2c00ed4..146c62dc30bcadb016c0281f7ccca8c79b1cb8e6 100644
|
| --- a/components/exo/display.cc
|
| +++ b/components/exo/display.cc
|
| @@ -99,7 +99,7 @@ scoped_ptr<ShellSurface> Display::CreateShellSurface(Surface* surface) {
|
| return nullptr;
|
| }
|
|
|
| - return make_scoped_ptr(new ShellSurface(surface, nullptr, gfx::Rect()));
|
| + return make_scoped_ptr(new ShellSurface(surface, nullptr, gfx::Rect(), true));
|
| }
|
|
|
| scoped_ptr<ShellSurface> Display::CreatePopupShellSurface(
|
| @@ -119,8 +119,8 @@ scoped_ptr<ShellSurface> Display::CreatePopupShellSurface(
|
| return nullptr;
|
| }
|
|
|
| - return make_scoped_ptr(
|
| - new ShellSurface(surface, parent, gfx::Rect(position, gfx::Size(1, 1))));
|
| + return make_scoped_ptr(new ShellSurface(
|
| + surface, parent, gfx::Rect(position, gfx::Size(1, 1)), false));
|
| }
|
|
|
| scoped_ptr<SubSurface> Display::CreateSubSurface(Surface* surface,
|
|
|