| Index: chrome/browser/ui/ash/chrome_shell_delegate.cc
|
| diff --git a/chrome/browser/ui/ash/chrome_shell_delegate.cc b/chrome/browser/ui/ash/chrome_shell_delegate.cc
|
| index 2522fad0b89d324e67c1446f587e8ebbe0e65dd9..c6447f20b9a4e6f73f2d07c82c9fee90d4e38d59 100644
|
| --- a/chrome/browser/ui/ash/chrome_shell_delegate.cc
|
| +++ b/chrome/browser/ui/ash/chrome_shell_delegate.cc
|
| @@ -17,6 +17,7 @@
|
| #include "ash/container_delegate_aura.h"
|
| #include "ash/content/gpu_support_impl.h"
|
| #include "ash/pointer_watcher_delegate_aura.h"
|
| +#include "ash/shell.h"
|
| #include "ash/wm/window_util.h"
|
| #include "base/command_line.h"
|
| #include "base/macros.h"
|
| @@ -359,8 +360,9 @@ bool ChromeShellDelegate::IsRunningInForcedAppMode() const {
|
| return chrome::IsRunningInForcedAppMode();
|
| }
|
|
|
| -bool ChromeShellDelegate::CanShowWindowForUser(aura::Window* window) const {
|
| - return ::CanShowWindowForUser(window, base::Bind(&GetActiveBrowserContext));
|
| +bool ChromeShellDelegate::CanShowWindowForUser(ash::WmWindow* window) const {
|
| + return ::CanShowWindowForUser(ash::WmWindowAura::GetAuraWindow(window),
|
| + base::Bind(&GetActiveBrowserContext));
|
| }
|
|
|
| bool ChromeShellDelegate::IsForceMaximizeOnFirstRun() const {
|
|
|