OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
7 | 7 |
8 #include "ui/aura/window_tree_host.h" | 8 #include "ui/aura/window_tree_host.h" |
9 #include "ui/views/views_export.h" | 9 #include "ui/views/views_export.h" |
10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" | 10 #include "ui/views/widget/desktop_aura/desktop_window_tree_host.h" |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, | 99 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
100 const gfx::ImageSkia& app_icon) OVERRIDE; | 100 const gfx::ImageSkia& app_icon) OVERRIDE; |
101 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; | 101 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
102 virtual void FlashFrame(bool flash_frame) OVERRIDE; | 102 virtual void FlashFrame(bool flash_frame) OVERRIDE; |
103 virtual void OnRootViewLayout() const OVERRIDE; | 103 virtual void OnRootViewLayout() const OVERRIDE; |
104 virtual void OnNativeWidgetFocus() OVERRIDE; | 104 virtual void OnNativeWidgetFocus() OVERRIDE; |
105 virtual void OnNativeWidgetBlur() OVERRIDE; | 105 virtual void OnNativeWidgetBlur() OVERRIDE; |
106 virtual bool IsAnimatingClosed() const OVERRIDE; | 106 virtual bool IsAnimatingClosed() const OVERRIDE; |
107 | 107 |
108 // Overridden from aura::WindowTreeHost: | 108 // Overridden from aura::WindowTreeHost: |
| 109 virtual ui::EventSource* GetEventSource() OVERRIDE; |
109 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 110 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
110 virtual void Show() OVERRIDE; | 111 virtual void Show() OVERRIDE; |
111 virtual void Hide() OVERRIDE; | 112 virtual void Hide() OVERRIDE; |
112 virtual gfx::Rect GetBounds() const OVERRIDE; | 113 virtual gfx::Rect GetBounds() const OVERRIDE; |
113 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 114 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
114 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; | 115 virtual gfx::Point GetLocationOnNativeScreen() const OVERRIDE; |
115 virtual void SetCapture() OVERRIDE; | 116 virtual void SetCapture() OVERRIDE; |
116 virtual void ReleaseCapture() OVERRIDE; | 117 virtual void ReleaseCapture() OVERRIDE; |
117 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; | 118 virtual bool QueryMouseLocation(gfx::Point* location_return) OVERRIDE; |
118 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; | 119 virtual void PostNativeEvent(const base::NativeEvent& native_event) OVERRIDE; |
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 static bool is_cursor_visible_; | 271 static bool is_cursor_visible_; |
271 | 272 |
272 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 273 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
273 | 274 |
274 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 275 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
275 }; | 276 }; |
276 | 277 |
277 } // namespace views | 278 } // namespace views |
278 | 279 |
279 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 280 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
OLD | NEW |