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

Side by Side Diff: ash/test/mirror_window_test_api.h

Issue 15367003: Create a mirror window. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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/shell.cc ('k') | ash/test/mirror_window_test_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 ASH_TEST_MIRROR_WINDOW_TEST_API_H_
6 #define ASH_TEST_MIRROR_WINDOW_TEST_API_H_
7
8 #include "base/basictypes.h"
9
10 namespace aura {
11 class RootWindow;
12 class Window;
13 }
14
15 namespace gfx {
16 class Point;
17 }
18
19 namespace ash {
20 namespace test {
21
22 class MirrorWindowTestApi {
23 public:
24 MirrorWindowTestApi() {}
25 ~MirrorWindowTestApi() {}
26
27 const aura::RootWindow* GetRootWindow() const;
28
29 int GetCurrentCursorType() const;
30 const gfx::Point& GetCursorHotPoint() const;
31 const aura::Window* GetCursorWindow() const;
32
33 private:
34 DISALLOW_COPY_AND_ASSIGN(MirrorWindowTestApi);
35 };
36
37 } // namespace test
38 } // namespace ash
39
40 #endif // ASH_TEST_MIRROR_WINDOW_TEST_API_H_
OLDNEW
« no previous file with comments | « ash/shell.cc ('k') | ash/test/mirror_window_test_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698