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

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

Issue 2025413002: Moves RootWindowControllerCommon and LayoutManager to common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_root_window_controller_common
Patch Set: merge 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
« no previous file with comments | « ash/wm/mru_window_tracker.cc ('k') | ash/wm/overview/window_grid.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/common/shell_window_ids.h"
5 #include "ash/common/wm/window_state.h" 6 #include "ash/common/wm/window_state.h"
6 #include "ash/shell.h" 7 #include "ash/shell.h"
7 #include "ash/shell_window_ids.h"
8 #include "ash/test/ash_test_base.h" 8 #include "ash/test/ash_test_base.h"
9 #include "ash/test/test_shelf_delegate.h" 9 #include "ash/test/test_shelf_delegate.h"
10 #include "ash/wm/mru_window_tracker.h" 10 #include "ash/wm/mru_window_tracker.h"
11 #include "ash/wm/window_state_aura.h" 11 #include "ash/wm/window_state_aura.h"
12 #include "ash/wm/window_util.h" 12 #include "ash/wm/window_util.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "ui/aura/test/test_window_delegate.h" 14 #include "ui/aura/test/test_window_delegate.h"
15 #include "ui/aura/window.h" 15 #include "ui/aura/window.h"
16 #include "ui/base/hit_test.h" 16 #include "ui/base/hit_test.h"
17 #include "ui/views/widget/widget.h" 17 #include "ui/views/widget/widget.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 drag_container->AddChild(w1.get()); 98 drag_container->AddChild(w1.get());
99 EXPECT_TRUE(wm::GetWindowState(w1.get())->is_dragged()); 99 EXPECT_TRUE(wm::GetWindowState(w1.get())->is_dragged());
100 100
101 // The dragged window should only be in the list once. 101 // The dragged window should only be in the list once.
102 MruWindowTracker::WindowList window_list = 102 MruWindowTracker::WindowList window_list =
103 mru_window_tracker()->BuildWindowListIgnoreModal(); 103 mru_window_tracker()->BuildWindowListIgnoreModal();
104 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1.get())); 104 EXPECT_EQ(1, std::count(window_list.begin(), window_list.end(), w1.get()));
105 } 105 }
106 106
107 } // namespace ash 107 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/mru_window_tracker.cc ('k') | ash/wm/overview/window_grid.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698