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

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

Issue 9035001: Move some more WM functionality down into ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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 | Annotate | Revision Log
« no previous file with comments | « ash/wm/activation_controller.cc ('k') | ash/wm/default_container_event_filter.h » ('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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/activation_controller.h" 5 #include "ash/wm/activation_controller.h"
6 6
7 #include "ash/wm/window_util.h"
7 #include "ui/aura/focus_manager.h" 8 #include "ui/aura/focus_manager.h"
8 #include "ui/aura/root_window.h" 9 #include "ui/aura/root_window.h"
9 #include "ui/aura/test/event_generator.h" 10 #include "ui/aura/test/event_generator.h"
10 #include "ui/aura/test/test_windows.h" 11 #include "ui/aura/test/test_windows.h"
11 #include "ui/aura/test/test_window_delegate.h" 12 #include "ui/aura/test/test_window_delegate.h"
12 #include "ui/aura_shell/test/aura_shell_test_base.h" 13 #include "ui/aura_shell/test/aura_shell_test_base.h"
13 #include "ui/aura_shell/test/test_activation_delegate.h" 14 #include "ui/aura_shell/test/test_activation_delegate.h"
14 #include "ui/aura_shell/window_util.h"
15 15
16 #if defined(OS_WIN) 16 #if defined(OS_WIN)
17 // Windows headers define macros for these function names which screw with us. 17 // Windows headers define macros for these function names which screw with us.
18 #if defined(CreateWindow) 18 #if defined(CreateWindow)
19 #undef CreateWindow 19 #undef CreateWindow
20 #endif 20 #endif
21 #endif 21 #endif
22 22
23 namespace aura_shell { 23 namespace aura_shell {
24 namespace test { 24 namespace test {
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 271
272 // Try focusing |w21|. Same rules apply. 272 // Try focusing |w21|. Same rules apply.
273 EXPECT_FALSE(IsActiveWindow(w2.get())); 273 EXPECT_FALSE(IsActiveWindow(w2.get()));
274 EXPECT_FALSE(w21->HasFocus()); 274 EXPECT_FALSE(w21->HasFocus());
275 EXPECT_TRUE(IsActiveWindow(w1.get())); 275 EXPECT_TRUE(IsActiveWindow(w1.get()));
276 EXPECT_TRUE(w1->HasFocus()); 276 EXPECT_TRUE(w1->HasFocus());
277 } 277 }
278 278
279 } // namespace test 279 } // namespace test
280 } // namespace aura_shell 280 } // namespace aura_shell
OLDNEW
« no previous file with comments | « ash/wm/activation_controller.cc ('k') | ash/wm/default_container_event_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698