| 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/activation_change_observer.h" | 9 #include "ui/aura/client/activation_change_observer.h" |
| 10 #include "ui/aura/client/activation_delegate.h" | 10 #include "ui/aura/client/activation_delegate.h" |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 virtual TooltipManager* GetTooltipManager() const OVERRIDE; | 110 virtual TooltipManager* GetTooltipManager() const OVERRIDE; |
| 111 virtual void SetCapture() OVERRIDE; | 111 virtual void SetCapture() OVERRIDE; |
| 112 virtual void ReleaseCapture() OVERRIDE; | 112 virtual void ReleaseCapture() OVERRIDE; |
| 113 virtual bool HasCapture() const OVERRIDE; | 113 virtual bool HasCapture() const OVERRIDE; |
| 114 virtual InputMethod* CreateInputMethod() OVERRIDE; | 114 virtual InputMethod* CreateInputMethod() OVERRIDE; |
| 115 virtual internal::InputMethodDelegate* GetInputMethodDelegate() OVERRIDE; | 115 virtual internal::InputMethodDelegate* GetInputMethodDelegate() OVERRIDE; |
| 116 virtual void CenterWindow(const gfx::Size& size) OVERRIDE; | 116 virtual void CenterWindow(const gfx::Size& size) OVERRIDE; |
| 117 virtual void GetWindowPlacement( | 117 virtual void GetWindowPlacement( |
| 118 gfx::Rect* bounds, | 118 gfx::Rect* bounds, |
| 119 ui::WindowShowState* maximized) const OVERRIDE; | 119 ui::WindowShowState* maximized) const OVERRIDE; |
| 120 virtual bool SetWindowTitle(const string16& title) OVERRIDE; | 120 virtual bool SetWindowTitle(const base::string16& title) OVERRIDE; |
| 121 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, | 121 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
| 122 const gfx::ImageSkia& app_icon) OVERRIDE; | 122 const gfx::ImageSkia& app_icon) OVERRIDE; |
| 123 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; | 123 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
| 124 virtual gfx::Rect GetWindowBoundsInScreen() const OVERRIDE; | 124 virtual gfx::Rect GetWindowBoundsInScreen() const OVERRIDE; |
| 125 virtual gfx::Rect GetClientAreaBoundsInScreen() const OVERRIDE; | 125 virtual gfx::Rect GetClientAreaBoundsInScreen() const OVERRIDE; |
| 126 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; | 126 virtual gfx::Rect GetRestoredBounds() const OVERRIDE; |
| 127 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 127 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| 128 virtual void SetSize(const gfx::Size& size) OVERRIDE; | 128 virtual void SetSize(const gfx::Size& size) OVERRIDE; |
| 129 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; | 129 virtual void StackAbove(gfx::NativeView native_view) OVERRIDE; |
| 130 virtual void StackAtTop() OVERRIDE; | 130 virtual void StackAtTop() OVERRIDE; |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 // See class documentation for Widget in widget.h for a note about type. | 307 // See class documentation for Widget in widget.h for a note about type. |
| 308 Widget::InitParams::Type widget_type_; | 308 Widget::InitParams::Type widget_type_; |
| 309 | 309 |
| 310 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); | 310 DISALLOW_COPY_AND_ASSIGN(DesktopNativeWidgetAura); |
| 311 }; | 311 }; |
| 312 | 312 |
| 313 } // namespace views | 313 } // namespace views |
| 314 | 314 |
| 315 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ | 315 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_NATIVE_WIDGET_AURA_H_ |
| OLD | NEW |