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

Side by Side Diff: ash/autoclick/autoclick_unittest.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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/autoclick/autoclick_controller.cc ('k') | ash/cast_config_controller.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 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/autoclick/autoclick_controller.h" 5 #include "ash/autoclick/autoclick_controller.h"
6 #include "ash/common/wm_shell.h"
7 #include "ash/shell.h" 6 #include "ash/shell.h"
8 #include "ash/test/ash_test_base.h" 7 #include "ash/test/ash_test_base.h"
8 #include "ash/wm_shell.h"
9 #include "ui/aura/test/test_window_delegate.h" 9 #include "ui/aura/test/test_window_delegate.h"
10 #include "ui/aura/window.h" 10 #include "ui/aura/window.h"
11 #include "ui/aura/window_event_dispatcher.h" 11 #include "ui/aura/window_event_dispatcher.h"
12 #include "ui/display/manager/display_manager.h" 12 #include "ui/display/manager/display_manager.h"
13 #include "ui/events/event.h" 13 #include "ui/events/event.h"
14 #include "ui/events/event_constants.h" 14 #include "ui/events/event_constants.h"
15 #include "ui/events/event_handler.h" 15 #include "ui/events/event_handler.h"
16 #include "ui/events/event_utils.h" 16 #include "ui/events/event_utils.h"
17 #include "ui/events/keycodes/keyboard_codes.h" 17 #include "ui/events/keycodes/keyboard_codes.h"
18 #include "ui/events/test/event_generator.h" 18 #include "ui/events/test/event_generator.h"
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 aura::test::EventCountDelegate delegate; 285 aura::test::EventCountDelegate delegate;
286 std::unique_ptr<aura::Window> window(CreateTestWindowInShellWithDelegate( 286 std::unique_ptr<aura::Window> window(CreateTestWindowInShellWithDelegate(
287 &delegate, 123, gfx::Rect(50, 50, 100, 100))); 287 &delegate, 123, gfx::Rect(50, 50, 100, 100)));
288 window->Show(); 288 window->Show();
289 events = WaitForMouseEvents(); 289 events = WaitForMouseEvents();
290 EXPECT_EQ(0u, events.size()); 290 EXPECT_EQ(0u, events.size());
291 EXPECT_EQ("1 1 0", delegate.GetMouseMotionCountsAndReset()); 291 EXPECT_EQ("1 1 0", delegate.GetMouseMotionCountsAndReset());
292 } 292 }
293 293
294 } // namespace ash 294 } // namespace ash
OLDNEW
« no previous file with comments | « ash/autoclick/autoclick_controller.cc ('k') | ash/cast_config_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698