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

Side by Side Diff: ash/wm/gestures/overview_gesture_handler_unittest.cc

Issue 280863002: Reduce creation of ViewsDelegate (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add widget includes for undef CreateWindow Created 6 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 | Annotate | Revision Log
« no previous file with comments | « ash/touch/touch_observer_hud_unittest.cc ('k') | ash/wm/mru_window_tracker_unittest.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/root_window_controller.h" 5 #include "ash/root_window_controller.h"
6 #include "ash/shell.h" 6 #include "ash/shell.h"
7 #include "ash/test/ash_test_base.h" 7 #include "ash/test/ash_test_base.h"
8 #include "ash/wm/overview/window_selector_controller.h" 8 #include "ash/wm/overview/window_selector_controller.h"
9 #include "ui/aura/test/event_generator.h" 9 #include "ui/aura/test/event_generator.h"
10 #include "ui/aura/test/test_window_delegate.h" 10 #include "ui/aura/test/test_window_delegate.h"
11 #include "ui/aura/test/test_windows.h" 11 #include "ui/aura/test/test_windows.h"
12 #include "ui/aura/window.h" 12 #include "ui/aura/window.h"
13 #include "ui/aura/window_event_dispatcher.h" 13 #include "ui/aura/window_event_dispatcher.h"
14 #include "ui/views/widget/widget.h"
14 15
15 namespace ash { 16 namespace ash {
16 17
17 class OverviewGestureHandlerTest : public test::AshTestBase { 18 class OverviewGestureHandlerTest : public test::AshTestBase {
18 public: 19 public:
19 OverviewGestureHandlerTest() {} 20 OverviewGestureHandlerTest() {}
20 virtual ~OverviewGestureHandlerTest() {} 21 virtual ~OverviewGestureHandlerTest() {}
21 22
22 aura::Window* CreateWindow(const gfx::Rect& bounds) { 23 aura::Window* CreateWindow(const gfx::Rect& bounds) {
23 return CreateTestWindowInShellWithDelegate(&delegate_, -1, bounds); 24 return CreateTestWindowInShellWithDelegate(&delegate_, -1, bounds);
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 scoped_ptr<aura::Window> window1(CreateWindow(bounds)); 164 scoped_ptr<aura::Window> window1(CreateWindow(bounds));
164 scoped_ptr<aura::Window> window2(CreateWindow(bounds)); 165 scoped_ptr<aura::Window> window2(CreateWindow(bounds));
165 aura::test::EventGenerator generator(root_window, window2.get()); 166 aura::test::EventGenerator generator(root_window, window2.get());
166 gfx::Point start_points[3]; 167 gfx::Point start_points[3];
167 start_points[0] = start_points[1] = start_points[2] = gfx::Point(105, 105); 168 start_points[0] = start_points[1] = start_points[2] = gfx::Point(105, 105);
168 generator.GestureMultiFingerScroll(3, start_points, 5, 10, 0, 100); 169 generator.GestureMultiFingerScroll(3, start_points, 5, 10, 0, 100);
169 EXPECT_FALSE(IsSelecting()); 170 EXPECT_FALSE(IsSelecting());
170 } 171 }
171 172
172 } // namespace ash 173 } // namespace ash
OLDNEW
« no previous file with comments | « ash/touch/touch_observer_hud_unittest.cc ('k') | ash/wm/mru_window_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698