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

Side by Side Diff: ash/wm/mru_window_tracker_unittest.cc

Issue 2889413002: chromeos: nukes window_state_aura (Closed)
Patch Set: merge, remove include from windows and shuffle functions for declaration Created 3 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/wm/mru_window_tracker.h" 5 #include "ash/wm/mru_window_tracker.h"
6 6
7 #include "ash/public/cpp/shell_window_ids.h" 7 #include "ash/public/cpp/shell_window_ids.h"
8 #include "ash/shell.h" 8 #include "ash/shell.h"
9 #include "ash/test/ash_test_base.h" 9 #include "ash/test/ash_test_base.h"
10 #include "ash/wm/window_state.h" 10 #include "ash/wm/window_state.h"
11 #include "ash/wm/window_state_aura.h"
12 #include "ash/wm/window_util.h" 11 #include "ash/wm/window_util.h"
13 #include "ash/wm_window.h" 12 #include "ash/wm_window.h"
14 #include "ui/base/hit_test.h" 13 #include "ui/base/hit_test.h"
15 14
16 namespace ash { 15 namespace ash {
17 16
18 class MruWindowTrackerTest : public test::AshTestBase { 17 class MruWindowTrackerTest : public test::AshTestBase {
19 public: 18 public:
20 MruWindowTrackerTest() {} 19 MruWindowTrackerTest() {}
21 ~MruWindowTrackerTest() override {} 20 ~MruWindowTrackerTest() override {}
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 gfx::Point(), HTRIGHT, aura::client::WINDOW_MOVE_SOURCE_TOUCH); 89 gfx::Point(), HTRIGHT, aura::client::WINDOW_MOVE_SOURCE_TOUCH);
91 90
92 // The dragged window should only be in the list once. 91 // The dragged window should only be in the list once.
93 WmWindow::Windows window_list = 92 WmWindow::Windows window_list =
94 mru_window_tracker()->BuildWindowListIgnoreModal(); 93 mru_window_tracker()->BuildWindowListIgnoreModal();
95 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), 94 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(),
96 WmWindow::Get(w1.get()))); 95 WmWindow::Get(w1.get())));
97 } 96 }
98 97
99 } // namespace ash 98 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/maximize_mode/maximize_mode_window_manager_unittest.cc ('k') | ash/wm/overview/window_grid.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698