OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef UI_VIEWS_TEST_TEST_DESKTOP_SCREEN_X11_H_ | |
6 #define UI_VIEWS_TEST_TEST_DESKTOP_SCREEN_X11_H_ | |
7 | |
8 #include "ui/gfx/geometry/point.h" | |
9 #include "ui/views/widget/desktop_aura/desktop_screen_x11.h" | |
10 | |
11 namespace base { | |
12 template<typename T> struct DefaultSingletonTraits; | |
13 } | |
14 | |
15 namespace views { | |
16 namespace test { | |
17 | |
18 // Replaces the screen instance in Linux (non-ChromeOS) tests. Allows | |
19 // aura tests to manually set the cursor screen point to be reported | |
20 // by GetCursorScreenPoint(). Needed because of a limitation in the | |
21 // X11 protocol that restricts us from warping the pointer with the | |
22 // mouse button held down. | |
23 class TestDesktopScreenX11 : public DesktopScreenX11 { | |
24 public: | |
25 static TestDesktopScreenX11* GetInstance(); | |
26 | |
27 TestDesktopScreenX11(); | |
28 ~TestDesktopScreenX11() override; | |
29 | |
30 gfx::Point GetCursorScreenPoint() override; | |
sky
2016/09/09 15:25:35
Generally we prefix overrides with where the overr
Tom (Use chromium acct)
2016/09/09 21:23:17
Done.
| |
31 void SetCursorScreenPoint(const gfx::Point& point); | |
sky
2016/09/09 15:25:35
optional: We generally inline trivial functions li
Tom (Use chromium acct)
2016/09/09 21:23:17
Done.
| |
32 | |
33 private: | |
34 friend struct base::DefaultSingletonTraits<TestDesktopScreenX11>; | |
35 | |
36 gfx::Point cursor_screen_point_; | |
37 | |
38 DISALLOW_COPY_AND_ASSIGN(TestDesktopScreenX11); | |
39 }; | |
40 | |
41 } // namespace test | |
42 } // namespace views | |
43 | |
44 #endif // UI_VIEWS_TEST_TEST_DESKTOP_SCREEN_X11_H_ | |
OLD | NEW |