From 32c2a46c5f820f42cdb37b869e99633d8a2d73ad Mon Sep 17 00:00:00 2001 From: "ben@chromium.org" Date: Sun, 26 Feb 2012 14:49:09 +0000 Subject: Migrate client API setters/getters to take a RootWindow. http://crbug.com/112131 TEST=none TBR=sky Review URL: https://chromiumcodereview.appspot.com/9455081 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123690 0039d316-1c4b-4281-b951-d872f2087c98 --- ash/focus_cycler.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ash/focus_cycler.cc') diff --git a/ash/focus_cycler.cc b/ash/focus_cycler.cc index f1877d1..6a62757b 100644 --- a/ash/focus_cycler.cc +++ b/ash/focus_cycler.cc @@ -66,7 +66,8 @@ void FocusCycler::RotateFocus(Direction direction) { Shell::GetInstance()->delegate()->GetCycleWindowList( ShellDelegate::SOURCE_LAUNCHER, ShellDelegate::ORDER_MRU); if (!windows.empty()) { - aura::client::GetActivationClient()->ActivateWindow(windows[0]); + aura::client::GetActivationClient(Shell::GetRootWindow())-> + ActivateWindow(windows[0]); break; } } else { -- cgit v1.1