| 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_NATIVE_WIDGET_AURA_H_ | 5 #ifndef UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 6 #define UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "ui/aura/client/focus_change_observer.h" | 9 #include "ui/aura/client/focus_change_observer.h" |
| 10 #include "ui/aura/window_delegate.h" | 10 #include "ui/aura/window_delegate.h" |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 virtual void ShowMaximizedWithBounds( | 143 virtual void ShowMaximizedWithBounds( |
| 144 const gfx::Rect& restored_bounds) OVERRIDE; | 144 const gfx::Rect& restored_bounds) OVERRIDE; |
| 145 virtual void ShowWithWindowState(ui::WindowShowState state) OVERRIDE; | 145 virtual void ShowWithWindowState(ui::WindowShowState state) OVERRIDE; |
| 146 virtual bool IsVisible() const OVERRIDE; | 146 virtual bool IsVisible() const OVERRIDE; |
| 147 virtual void Activate() OVERRIDE; | 147 virtual void Activate() OVERRIDE; |
| 148 virtual void Deactivate() OVERRIDE; | 148 virtual void Deactivate() OVERRIDE; |
| 149 virtual bool IsActive() const OVERRIDE; | 149 virtual bool IsActive() const OVERRIDE; |
| 150 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; | 150 virtual void SetAlwaysOnTop(bool always_on_top) OVERRIDE; |
| 151 virtual bool IsAlwaysOnTop() const OVERRIDE; | 151 virtual bool IsAlwaysOnTop() const OVERRIDE; |
| 152 virtual void SetVisibleOnAllWorkspaces(bool always_visible) OVERRIDE; | 152 virtual void SetVisibleOnAllWorkspaces(bool always_visible) OVERRIDE; |
| 153 virtual void SetInterceptAllKeys(bool want_all_keys) OVERRIDE; |
| 153 virtual void Maximize() OVERRIDE; | 154 virtual void Maximize() OVERRIDE; |
| 154 virtual void Minimize() OVERRIDE; | 155 virtual void Minimize() OVERRIDE; |
| 155 virtual bool IsMaximized() const OVERRIDE; | 156 virtual bool IsMaximized() const OVERRIDE; |
| 156 virtual bool IsMinimized() const OVERRIDE; | 157 virtual bool IsMinimized() const OVERRIDE; |
| 157 virtual void Restore() OVERRIDE; | 158 virtual void Restore() OVERRIDE; |
| 158 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | 159 virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
| 159 virtual bool IsFullscreen() const OVERRIDE; | 160 virtual bool IsFullscreen() const OVERRIDE; |
| 160 virtual void SetOpacity(unsigned char opacity) OVERRIDE; | 161 virtual void SetOpacity(unsigned char opacity) OVERRIDE; |
| 161 virtual void SetUseDragFrame(bool use_drag_frame) OVERRIDE; | 162 virtual void SetUseDragFrame(bool use_drag_frame) OVERRIDE; |
| 162 virtual void FlashFrame(bool flash_frame) OVERRIDE; | 163 virtual void FlashFrame(bool flash_frame) OVERRIDE; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 | 314 |
| 314 // See class documentation for Widget in widget.h for a note about type. | 315 // See class documentation for Widget in widget.h for a note about type. |
| 315 Widget::InitParams::Type widget_type_; | 316 Widget::InitParams::Type widget_type_; |
| 316 | 317 |
| 317 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); | 318 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
| 318 }; | 319 }; |
| 319 | 320 |
| 320 } // namespace views | 321 } // namespace views |
| 321 | 322 |
| 322 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 323 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |