| Index: ash/root_window_controller.cc
|
| diff --git a/ash/root_window_controller.cc b/ash/root_window_controller.cc
|
| index 0ab912a317784014348898e8f4342bc0f4581141..f98646fdf87dd78c202610cd34e43088569ae926 100644
|
| --- a/ash/root_window_controller.cc
|
| +++ b/ash/root_window_controller.cc
|
| @@ -64,6 +64,7 @@
|
| #include "ui/keyboard/keyboard_util.h"
|
| #include "ui/views/controls/menu/menu_runner.h"
|
| #include "ui/views/corewm/capture_controller.h"
|
| +#include "ui/views/corewm/transient_window_manager.h"
|
| #include "ui/views/corewm/visibility_controller.h"
|
| #include "ui/views/view_model.h"
|
| #include "ui/views/view_model_utils.h"
|
| @@ -544,7 +545,7 @@ const aura::Window* RootWindowController::GetWindowForFullscreenMode() const {
|
| while (topmost_window) {
|
| if (wm::GetWindowState(topmost_window)->IsFullscreen())
|
| return topmost_window;
|
| - topmost_window = topmost_window->transient_parent();
|
| + topmost_window = views::corewm::GetTransientParent(topmost_window);
|
| }
|
| return NULL;
|
| }
|
|
|