| Index: ash/common/wm_shell.cc
|
| diff --git a/ash/common/wm_shell.cc b/ash/common/wm_shell.cc
|
| index 5ad467936d6084b6acf71476fb8afad4a51c1659..4d8381f46915accc5bac999edb7f68a84bcbd6a5 100644
|
| --- a/ash/common/wm_shell.cc
|
| +++ b/ash/common/wm_shell.cc
|
| @@ -144,6 +144,12 @@ WmShell::WmShell(std::unique_ptr<ShellDelegate> shell_delegate)
|
|
|
| WmShell::~WmShell() {}
|
|
|
| +WmWindow* WmShell::GetRootWindowForNewWindows() {
|
| + if (scoped_root_window_for_new_windows_)
|
| + return scoped_root_window_for_new_windows_;
|
| + return root_window_for_new_windows_;
|
| +}
|
| +
|
| bool WmShell::IsSystemModalWindowOpen() {
|
| if (simulate_modal_window_open_for_testing_)
|
| return true;
|
|
|