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

Side by Side Diff: ui/ozone/platform/test/test_window.h

Issue 1285183008: Ozone integration. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: add missing license header Created 5 years, 4 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 | « ui/ozone/platform/test/ozone_platform_test.cc ('k') | ui/ozone/platform/test/test_window.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 2014 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_OZONE_PLATFORM_TEST_TEST_WINDOW_H_
6 #define UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_
7
8 #include "base/files/file_path.h"
9 #include "ui/gfx/geometry/rect.h"
10 #include "ui/gfx/native_widget_types.h"
11 #include "ui/platform_window/platform_window.h"
12
13 namespace ui {
14
15 class PlatformWindowDelegate;
16 class TestWindowManager;
17
18 class TestWindow : public PlatformWindow {
19 public:
20 TestWindow(PlatformWindowDelegate* delegate,
21 TestWindowManager* manager,
22 const gfx::Rect& bounds);
23 ~TestWindow() override;
24
25 // Path for image file for this window.
26 base::FilePath path();
27
28 // PlatformWindow:
29 gfx::Rect GetBounds() override;
30 void SetBounds(const gfx::Rect& bounds) override;
31 void Show() override;
32 void Hide() override;
33 void Close() override;
34 void SetCapture() override;
35 void ReleaseCapture() override;
36 void ToggleFullscreen() override;
37 void Maximize() override;
38 void Minimize() override;
39 void Restore() override;
40 void SetCursor(PlatformCursor cursor) override;
41 void MoveCursorTo(const gfx::Point& location) override;
42 void ConfineCursorToBounds(const gfx::Rect& bounds) override;
43
44 private:
45 PlatformWindowDelegate* delegate_;
46 TestWindowManager* manager_;
47 gfx::Rect bounds_;
48 gfx::AcceleratedWidget widget_;
49
50 DISALLOW_COPY_AND_ASSIGN(TestWindow);
51 };
52
53 } // namespace ui
54
55 #endif // UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/test/ozone_platform_test.cc ('k') | ui/ozone/platform/test/test_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698