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" |
(...skipping 29 matching lines...) Expand all Loading... |
40 // WindowTreeHost: | 40 // WindowTreeHost: |
41 virtual ui::EventSource* GetEventSource() override; | 41 virtual ui::EventSource* GetEventSource() override; |
42 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override; | 42 virtual gfx::AcceleratedWidget GetAcceleratedWidget() override; |
43 virtual void Show() override; | 43 virtual void Show() override; |
44 virtual void Hide() override; | 44 virtual void Hide() override; |
45 virtual gfx::Rect GetBounds() const override; | 45 virtual gfx::Rect GetBounds() const override; |
46 virtual void SetBounds(const gfx::Rect& bounds) override; | 46 virtual void SetBounds(const gfx::Rect& bounds) override; |
47 virtual gfx::Point GetLocationOnNativeScreen() const override; | 47 virtual gfx::Point GetLocationOnNativeScreen() const override; |
48 virtual void SetCapture() override; | 48 virtual void SetCapture() override; |
49 virtual void ReleaseCapture() override; | 49 virtual void ReleaseCapture() override; |
50 virtual void PostNativeEvent(const base::NativeEvent& event) override; | |
51 virtual void SetCursorNative(gfx::NativeCursor cursor_type) override; | 50 virtual void SetCursorNative(gfx::NativeCursor cursor_type) override; |
52 virtual void MoveCursorToNative(const gfx::Point& location) override; | 51 virtual void MoveCursorToNative(const gfx::Point& location) override; |
53 virtual void OnCursorVisibilityChangedNative(bool show) override; | 52 virtual void OnCursorVisibilityChangedNative(bool show) override; |
54 | 53 |
55 // ui::EventSource overrides. | 54 // ui::EventSource overrides. |
56 virtual ui::EventProcessor* GetEventProcessor() override; | 55 virtual ui::EventProcessor* GetEventProcessor() override; |
57 | 56 |
58 // Platform-specific part of this WindowTreeHost. | 57 // Platform-specific part of this WindowTreeHost. |
59 scoped_ptr<ui::PlatformWindow> platform_window_; | 58 scoped_ptr<ui::PlatformWindow> platform_window_; |
60 | 59 |
61 // The identifier used to create a compositing surface. | 60 // The identifier used to create a compositing surface. |
62 gfx::AcceleratedWidget widget_; | 61 gfx::AcceleratedWidget widget_; |
63 | 62 |
64 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); | 63 DISALLOW_COPY_AND_ASSIGN(WindowTreeHostOzone); |
65 }; | 64 }; |
66 | 65 |
67 } // namespace aura | 66 } // namespace aura |
68 | 67 |
69 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_ | 68 #endif // UI_AURA_WINDOW_TREE_HOST_OZONE_H_ |
OLD | NEW |