OLD | NEW |
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_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ | 5 #ifndef UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ |
6 #define UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ | 6 #define UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
10 #include "ui/platform_window/platform_window.h" | 11 #include "ui/platform_window/platform_window.h" |
11 #include "ui/platform_window/stub/stub_window_export.h" | 12 #include "ui/platform_window/stub/stub_window_export.h" |
12 | 13 |
13 namespace ui { | 14 namespace ui { |
14 | 15 |
15 class STUB_WINDOW_EXPORT StubWindow : NON_EXPORTED_BASE(public PlatformWindow) { | 16 class STUB_WINDOW_EXPORT StubWindow : NON_EXPORTED_BASE(public PlatformWindow) { |
16 public: | 17 public: |
17 explicit StubWindow(PlatformWindowDelegate* delegate); | 18 explicit StubWindow(PlatformWindowDelegate* delegate); |
18 ~StubWindow() override; | 19 ~StubWindow() override; |
(...skipping 19 matching lines...) Expand all Loading... |
38 | 39 |
39 PlatformWindowDelegate* delegate_; | 40 PlatformWindowDelegate* delegate_; |
40 gfx::Rect bounds_; | 41 gfx::Rect bounds_; |
41 | 42 |
42 DISALLOW_COPY_AND_ASSIGN(StubWindow); | 43 DISALLOW_COPY_AND_ASSIGN(StubWindow); |
43 }; | 44 }; |
44 | 45 |
45 } // namespace ui | 46 } // namespace ui |
46 | 47 |
47 #endif // UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ | 48 #endif // UI_PLATFORM_WINDOW_STUB_STUB_WINDOW_H_ |
OLD | NEW |