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

Unified Diff: chrome/browser/chromeos/extensions/wallpaper_private_api.cc

Issue 12618014: Switch Next Window Key functionality (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: protect against alt+tab+switch_windows interaction Created 7 years, 9 months 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: chrome/browser/chromeos/extensions/wallpaper_private_api.cc
diff --git a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
index 86671e94f8e5cff749e87522245ed1c8af4baa96..cd09409d457b00e904c047db26091a2e1d12c530 100644
--- a/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
+++ b/chrome/browser/chromeos/extensions/wallpaper_private_api.cc
@@ -133,7 +133,7 @@ class WindowStateManager : public aura::WindowObserver {
}
void BuildWindowListAndMinimizeInactive(aura::Window* active_window) {
- windows_ = ash::WindowCycleController::BuildWindowList(NULL);
+ windows_ = ash::WindowCycleController::BuildWindowList(NULL, false);
// Remove active window.
std::vector<aura::Window*>::iterator last =
std::remove(windows_.begin(), windows_.end(), active_window);

Powered by Google App Engine
This is Rietveld 408576698