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

Side by Side Diff: ash/focus_cycler_unittest.cc

Issue 2093283002: mash: Convert all of //ash/system to use WmShelf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/common/focus_cycler.h" 5 #include "ash/common/focus_cycler.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "ash/common/shelf/wm_shelf.h"
9 #include "ash/common/shell_window_ids.h" 10 #include "ash/common/shell_window_ids.h"
10 #include "ash/common/wm_shell.h" 11 #include "ash/common/wm_shell.h"
11 #include "ash/common/wm_window.h" 12 #include "ash/common/wm_window.h"
12 #include "ash/shelf/shelf.h" 13 #include "ash/shelf/shelf.h"
13 #include "ash/shelf/shelf_widget.h" 14 #include "ash/shelf/shelf_widget.h"
14 #include "ash/system/status_area_widget.h" 15 #include "ash/system/status_area_widget.h"
15 #include "ash/system/status_area_widget_delegate.h" 16 #include "ash/system/status_area_widget_delegate.h"
16 #include "ash/system/tray/system_tray.h" 17 #include "ash/system/tray/system_tray.h"
17 #include "ash/test/ash_test_base.h" 18 #include "ash/test/ash_test_base.h"
18 #include "ash/wm/window_util.h" 19 #include "ash/wm/window_util.h"
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 90
90 protected: 91 protected:
91 // Creates the system tray, returning true on success. 92 // Creates the system tray, returning true on success.
92 bool CreateTray() { 93 bool CreateTray() {
93 if (tray_) 94 if (tray_)
94 return false; 95 return false;
95 WmWindow* parent = 96 WmWindow* parent =
96 WmShell::Get()->GetRootWindowForNewWindows()->GetChildByShellWindowId( 97 WmShell::Get()->GetRootWindowForNewWindows()->GetChildByShellWindowId(
97 kShellWindowId_StatusContainer); 98 kShellWindowId_StatusContainer);
98 99
99 StatusAreaWidget* widget = new StatusAreaWidget(parent, GetPrimaryShelf()); 100 StatusAreaWidget* widget =
101 new StatusAreaWidget(parent, WmShelf::ForPrimaryDisplay());
100 widget->CreateTrayViews(); 102 widget->CreateTrayViews();
101 widget->Show(); 103 widget->Show();
102 tray_.reset(widget->system_tray()); 104 tray_.reset(widget->system_tray());
103 if (!tray_->GetWidget()) 105 if (!tray_->GetWidget())
104 return false; 106 return false;
105 focus_cycler_->AddWidget(tray()->GetWidget()); 107 focus_cycler_->AddWidget(tray()->GetWidget());
106 GetStatusAreaWidgetDelegate(tray_->GetWidget())->SetFocusCyclerForTesting( 108 GetStatusAreaWidgetDelegate(tray_->GetWidget())->SetFocusCyclerForTesting(
107 focus_cycler()); 109 focus_cycler());
108 return true; 110 return true;
109 } 111 }
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 // Cycle focus to the shelf. 425 // Cycle focus to the shelf.
424 WmShell::Get()->focus_cycler()->RotateFocus(FocusCycler::FORWARD); 426 WmShell::Get()->focus_cycler()->RotateFocus(FocusCycler::FORWARD);
425 427
426 // Cycle focus should go back to the browser. 428 // Cycle focus should go back to the browser.
427 WmShell::Get()->focus_cycler()->RotateFocus(FocusCycler::FORWARD); 429 WmShell::Get()->focus_cycler()->RotateFocus(FocusCycler::FORWARD);
428 EXPECT_TRUE(wm::IsActiveWindow(window.get())); 430 EXPECT_TRUE(wm::IsActiveWindow(window.get()));
429 } 431 }
430 432
431 } // namespace test 433 } // namespace test
432 } // namespace ash 434 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698