OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_AURA_WINDOW_TREE_HOST_OZONE_H_ | 5 #ifndef UI_AURA_WINDOW_TREE_HOST_OZONE_H_ |
6 #define UI_AURA_WINDOW_TREE_HOST_OZONE_H_ | 6 #define UI_AURA_WINDOW_TREE_HOST_OZONE_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "ui/aura/window_tree_host.h" | 9 #include "ui/aura/window_tree_host.h" |
10 #include "ui/events/event_source.h" | 10 #include "ui/events/event_source.h" |
11 #include "ui/gfx/rect.h" | 11 #include "ui/gfx/geometry/rect.h" |
12 #include "ui/platform_window/platform_window_delegate.h" | 12 #include "ui/platform_window/platform_window_delegate.h" |
13 | 13 |
14 namespace ui { | 14 namespace ui { |
15 class PlatformWindow; | 15 class PlatformWindow; |
16 } | 16 } |
17 | 17 |
18 namespace aura { | 18 namespace aura { |
19 | 19 |
20 class AURA_EXPORT WindowTreeHostOzone : public WindowTreeHost, | 20 class AURA_EXPORT WindowTreeHostOzone : public WindowTreeHost, |
21 public ui::EventSource, | 21 public ui::EventSource, |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 // Current Aura cursor. | 66 // Current Aura cursor. |
67 gfx::NativeCursor current_cursor_; | 67 gfx::NativeCursor current_cursor_; |
68 | 68 |
69 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); | 69 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); |
70 }; | 70 }; |
71 | 71 |
72 } // namespace aura | 72 } // namespace aura |
73 | 73 |
74 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_ | 74 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_ |
OLD | NEW |