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

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

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 2014 The Chromium Authors. All rights reserved. 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 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 UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_ 5 #ifndef UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_
6 #define UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_ 6 #define UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_
7 7
8 #include "base/files/file_path.h" 8 #include "base/files/file_path.h"
9 #include "ui/gfx/geometry/rect.h" 9 #include "ui/gfx/geometry/rect.h"
10 #include "ui/gfx/native_widget_types.h" 10 #include "ui/gfx/native_widget_types.h"
11 #include "ui/platform_window/platform_window.h" 11 #include "ui/platform_window/platform_window.h"
12 12
13 namespace ui { 13 namespace ui {
14 14
15 class PlatformWindowDelegate; 15 class PlatformWindowDelegate;
16 class TestWindowManager; 16 class TestWindowManager;
17 17
18 class TestWindow : public PlatformWindow { 18 class TestWindow : public PlatformWindow {
19 public: 19 public:
20 TestWindow(PlatformWindowDelegate* delegate, 20 TestWindow(PlatformWindowDelegate* delegate,
21 TestWindowManager* manager, 21 TestWindowManager* manager,
22 const gfx::Rect& bounds); 22 const gfx::Rect& bounds);
23 virtual ~TestWindow(); 23 virtual ~TestWindow();
24 24
25 // Path for image file for this window. 25 // Path for image file for this window.
26 base::FilePath path(); 26 base::FilePath path();
27 27
28 // PlatformWindow: 28 // PlatformWindow:
29 virtual gfx::Rect GetBounds() OVERRIDE; 29 virtual gfx::Rect GetBounds() override;
30 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; 30 virtual void SetBounds(const gfx::Rect& bounds) override;
31 virtual void Show() OVERRIDE; 31 virtual void Show() override;
32 virtual void Hide() OVERRIDE; 32 virtual void Hide() override;
33 virtual void Close() OVERRIDE; 33 virtual void Close() override;
34 virtual void SetCapture() OVERRIDE; 34 virtual void SetCapture() override;
35 virtual void ReleaseCapture() OVERRIDE; 35 virtual void ReleaseCapture() override;
36 virtual void ToggleFullscreen() OVERRIDE; 36 virtual void ToggleFullscreen() override;
37 virtual void Maximize() OVERRIDE; 37 virtual void Maximize() override;
38 virtual void Minimize() OVERRIDE; 38 virtual void Minimize() override;
39 virtual void Restore() OVERRIDE; 39 virtual void Restore() override;
40 virtual void SetCursor(PlatformCursor cursor) OVERRIDE; 40 virtual void SetCursor(PlatformCursor cursor) override;
41 virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE; 41 virtual void MoveCursorTo(const gfx::Point& location) override;
42 42
43 private: 43 private:
44 PlatformWindowDelegate* delegate_; 44 PlatformWindowDelegate* delegate_;
45 TestWindowManager* manager_; 45 TestWindowManager* manager_;
46 gfx::Rect bounds_; 46 gfx::Rect bounds_;
47 gfx::AcceleratedWidget widget_; 47 gfx::AcceleratedWidget widget_;
48 48
49 DISALLOW_COPY_AND_ASSIGN(TestWindow); 49 DISALLOW_COPY_AND_ASSIGN(TestWindow);
50 }; 50 };
51 51
52 } // namespace ui 52 } // namespace ui
53 53
54 #endif // UI_OZONE_PLATFORM_TEST_TEST_WINDOW_H_ 54 #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_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698