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

Unified Diff: ash/touch/touch_hud_debug.cc

Issue 64933002: Eliminate Shell::RootWindowList in favor of aura::Window::Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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: ash/touch/touch_hud_debug.cc
diff --git a/ash/touch/touch_hud_debug.cc b/ash/touch/touch_hud_debug.cc
index 921c31c65344da8785cd4920874ba4d08b4bc395..019779d34471d3743ba95272cde0587b6246f8f2 100644
--- a/ash/touch/touch_hud_debug.cc
+++ b/ash/touch/touch_hud_debug.cc
@@ -371,8 +371,8 @@ TouchHudDebug::~TouchHudDebug() {
// static
scoped_ptr<DictionaryValue> TouchHudDebug::GetAllAsDictionary() {
scoped_ptr<DictionaryValue> value(new DictionaryValue());
- Shell::RootWindowList roots = Shell::GetInstance()->GetAllRootWindows();
- for (Shell::RootWindowList::iterator iter = roots.begin();
+ aura::Window::Windows roots = Shell::GetInstance()->GetAllRootWindows();
+ for (aura::Window::Windows::iterator iter = roots.begin();
iter != roots.end(); ++iter) {
internal::RootWindowController* controller = GetRootWindowController(*iter);
internal::TouchHudDebug* hud = controller->touch_hud_debug();

Powered by Google App Engine
This is Rietveld 408576698