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_ROOT_WINDOW_HOST_WIN_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
7 | 7 |
8 #include "ui/aura/client/animation_host.h" | 8 #include "ui/aura/client/animation_host.h" |
9 #include "ui/aura/window_tree_host.h" | 9 #include "ui/aura/window_tree_host.h" |
10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; | 83 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; |
84 virtual bool IsAlwaysOnTop() const OVERRIDE; | 84 virtual bool IsAlwaysOnTop() const OVERRIDE; |
85 virtual bool SetWindowTitle(const base::string16& title) OVERRIDE; | 85 virtual bool SetWindowTitle(const base::string16& title) OVERRIDE; |
86 virtual void ClearNativeFocus() OVERRIDE; | 86 virtual void ClearNativeFocus() OVERRIDE; |
87 virtual Widget::MoveLoopResult RunMoveLoop( | 87 virtual Widget::MoveLoopResult RunMoveLoop( |
88 const gfx::Vector2d& drag_offset, | 88 const gfx::Vector2d& drag_offset, |
89 Widget::MoveLoopSource source, | 89 Widget::MoveLoopSource source, |
90 Widget::MoveLoopEscapeBehavior escape_behavior) OVERRIDE; | 90 Widget::MoveLoopEscapeBehavior escape_behavior) OVERRIDE; |
91 virtual void EndMoveLoop() OVERRIDE; | 91 virtual void EndMoveLoop() OVERRIDE; |
92 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; | 92 virtual void SetVisibilityChangedAnimationsEnabled(bool value) OVERRIDE; |
93 virtual bool ShouldUseNativeFrame() OVERRIDE; | 93 virtual bool ShouldUseNativeFrame() const OVERRIDE; |
| 94 virtual bool ShouldWindowContentsBeTransparent() const OVERRIDE; |
94 virtual void FrameTypeChanged() OVERRIDE; | 95 virtual void FrameTypeChanged() OVERRIDE; |
95 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; | 96 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; |
96 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | 97 virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
97 virtual bool IsFullscreen() const OVERRIDE; | 98 virtual bool IsFullscreen() const OVERRIDE; |
98 virtual void SetOpacity(unsigned char opacity) OVERRIDE; | 99 virtual void SetOpacity(unsigned char opacity) OVERRIDE; |
99 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, | 100 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
100 const gfx::ImageSkia& app_icon) OVERRIDE; | 101 const gfx::ImageSkia& app_icon) OVERRIDE; |
101 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; | 102 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
102 virtual void FlashFrame(bool flash_frame) OVERRIDE; | 103 virtual void FlashFrame(bool flash_frame) OVERRIDE; |
103 virtual void OnRootViewLayout() const OVERRIDE; | 104 virtual void OnRootViewLayout() const OVERRIDE; |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
280 static bool is_cursor_visible_; | 281 static bool is_cursor_visible_; |
281 | 282 |
282 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 283 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
283 | 284 |
284 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 285 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
285 }; | 286 }; |
286 | 287 |
287 } // namespace views | 288 } // namespace views |
288 | 289 |
289 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 290 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
OLD | NEW |