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

Side by Side Diff: chrome/test/base/interactive_test_utils.h

Issue 1747803003: MacViews: Implement Tab Dragging (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests and review issues. Created 4 years, 8 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ 5 #ifndef CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_
6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ 6 #define CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_
7 7
8 #include "chrome/browser/ui/view_ids.h" 8 #include "chrome/browser/ui/view_ids.h"
9 #include "chrome/test/base/ui_test_utils.h" 9 #include "chrome/test/base/ui_test_utils.h"
10 #include "ui/base/test/ui_controls.h" 10 #include "ui/base/test/ui_controls.h"
11 11 #include "ui/gfx/geometry/point.h"
12 namespace gfx {
13 class Point;
14 }
15 12
16 #if defined(TOOLKIT_VIEWS) 13 #if defined(TOOLKIT_VIEWS)
17 namespace views { 14 namespace views {
18 class View; 15 class View;
19 } 16 }
20 #endif 17 #endif
21 18
22 namespace ui_test_utils { 19 namespace ui_test_utils {
23 20
21 #if defined(OS_MACOSX)
22 // Moves the mouse to the |from| position, presses left mouse button,
23 // then moves mouse to the |to| position and releases left mouse button.
24 // |steps| indicates number of intermediate points that are interpolated between
25 // |from| and |to|.
26 void DragAndDrop(const gfx::Point& from,
27 const gfx::Point& to,
28 int steps = 1);
29
30 class DragAndDropOperation {
31 public:
32 enum class Type {
33 Move,
34 MoveWithoutAck,
35 MouseDown,
36 MouseUp,
37 SetMousePositionOverride,
38 UnsetMousePositionOverride,
39 DebugDelay
40 };
41
42 static DragAndDropOperation Move(const gfx::Point& p);
43 // Doesn't wait for the event to finish processing, instead it waits for
44 // |delay|.
45 static DragAndDropOperation MoveWithoutAck(const gfx::Point& p,
46 const base::TimeDelta& delay);
47 static DragAndDropOperation MouseDown();
48 static DragAndDropOperation MouseUp();
49 static DragAndDropOperation SetMousePositionOverride(const gfx::Point& p);
50 static DragAndDropOperation UnsetMousePositionOverride();
51 static DragAndDropOperation DebugDelay();
52
53 Type type() const { return type_; }
54 const gfx::Point& point() const { return point_; }
55 const base::TimeDelta& delay() const { return delay_; }
56
57 private:
58 DragAndDropOperation(Type type,
59 const gfx::Point& p,
60 const base::TimeDelta& delay = base::TimeDelta())
61 : type_(type), point_(p), delay_(delay) {}
62
63 Type type_;
64 gfx::Point point_;
65 base::TimeDelta delay_;
66 };
67
68 // Performs a series of drag-and-drop operations on a background thread, while
69 // spinning a RunLoop on the main thread. If there are nested eventloops on the
70 // main thread's queue, our helper RunLoop won't quit and we'll get stuck.
71 // BridgedNativeWidget::RunMoveLoop() creates a RunLoop, so we need to ensure
72 // that Drag'n'Drop is finished before trying to return from the function.
73 void DragAndDrop(const std::list<DragAndDropOperation>& operations);
74 #endif // OS_MACOSX
75
24 // Brings the native window for |browser| to the foreground. Returns true on 76 // Brings the native window for |browser| to the foreground. Returns true on
25 // success. 77 // success.
26 bool BringBrowserWindowToFront(const Browser* browser) WARN_UNUSED_RESULT; 78 bool BringBrowserWindowToFront(const Browser* browser) WARN_UNUSED_RESULT;
27 79
28 // Returns true if the View is focused. 80 // Returns true if the View is focused.
29 bool IsViewFocused(const Browser* browser, ViewID vid); 81 bool IsViewFocused(const Browser* browser, ViewID vid);
30 82
31 // Simulates a mouse click on a View in the browser. 83 // Simulates a mouse click on a View in the browser.
32 void ClickOnView(const Browser* browser, ViewID vid); 84 void ClickOnView(const Browser* browser, ViewID vid);
33 85
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 // ui_controls_linux.cc and ui_controls_mac.cc 195 // ui_controls_linux.cc and ui_controls_mac.cc
144 void ClickTask(ui_controls::MouseButton button, 196 void ClickTask(ui_controls::MouseButton button,
145 int state, 197 int state,
146 const base::Closure& followup); 198 const base::Closure& followup);
147 199
148 } // namespace internal 200 } // namespace internal
149 201
150 } // namespace ui_test_utils 202 } // namespace ui_test_utils
151 203
152 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_ 204 #endif // CHROME_TEST_BASE_INTERACTIVE_TEST_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698