| Index: chrome/browser/ui/ash/ash_util.cc
|
| diff --git a/chrome/browser/ui/ash/ash_util.cc b/chrome/browser/ui/ash/ash_util.cc
|
| index f6d6ce2e8c4966d27ef9850a6dbf34361d34e7a7..8d51b019d1d984cb023b97db8df534436689a47b 100644
|
| --- a/chrome/browser/ui/ash/ash_util.cc
|
| +++ b/chrome/browser/ui/ash/ash_util.cc
|
| @@ -20,10 +20,10 @@ bool IsNativeViewInAsh(gfx::NativeView native_view) {
|
| if (!ash::Shell::HasInstance())
|
| return false;
|
|
|
| - ash::Shell::RootWindowList root_windows =
|
| + aura::Window::Windows root_windows =
|
| ash::Shell::GetInstance()->GetAllRootWindows();
|
|
|
| - for (ash::Shell::RootWindowList::const_iterator it = root_windows.begin();
|
| + for (aura::Window::Windows::const_iterator it = root_windows.begin();
|
| it != root_windows.end(); ++it) {
|
| if ((*it)->Contains(native_view))
|
| return true;
|
|
|