Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Unified Diff: trunk/src/chrome/browser/ui/ash/ash_util.cc

Issue 59153004: Revert 233787 "Eliminate Shell::RootWindowList in favor of aura:..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: trunk/src/chrome/browser/ui/ash/ash_util.cc
===================================================================
--- trunk/src/chrome/browser/ui/ash/ash_util.cc (revision 233812)
+++ trunk/src/chrome/browser/ui/ash/ash_util.cc (working copy)
@@ -20,10 +20,10 @@
if (!ash::Shell::HasInstance())
return false;
- aura::Window::Windows root_windows =
+ ash::Shell::RootWindowList root_windows =
ash::Shell::GetInstance()->GetAllRootWindows();
- for (aura::Window::Windows::const_iterator it = root_windows.begin();
+ for (ash::Shell::RootWindowList::const_iterator it = root_windows.begin();
it != root_windows.end(); ++it) {
if ((*it)->Contains(native_view))
return true;

Powered by Google App Engine
This is Rietveld 408576698