| 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/root_window_host.h" | 9 #include "ui/aura/root_window_host.h" |
| 10 #include "ui/views/views_export.h" | 10 #include "ui/views/views_export.h" |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; | 89 virtual NonClientFrameView* CreateNonClientFrameView() OVERRIDE; |
| 90 virtual void SetFullscreen(bool fullscreen) OVERRIDE; | 90 virtual void SetFullscreen(bool fullscreen) OVERRIDE; |
| 91 virtual bool IsFullscreen() const OVERRIDE; | 91 virtual bool IsFullscreen() const OVERRIDE; |
| 92 virtual void SetOpacity(unsigned char opacity) OVERRIDE; | 92 virtual void SetOpacity(unsigned char opacity) OVERRIDE; |
| 93 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, | 93 virtual void SetWindowIcons(const gfx::ImageSkia& window_icon, |
| 94 const gfx::ImageSkia& app_icon) OVERRIDE; | 94 const gfx::ImageSkia& app_icon) OVERRIDE; |
| 95 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; | 95 virtual void InitModalType(ui::ModalType modal_type) OVERRIDE; |
| 96 virtual void FlashFrame(bool flash_frame) OVERRIDE; | 96 virtual void FlashFrame(bool flash_frame) OVERRIDE; |
| 97 virtual void OnNativeWidgetFocus() OVERRIDE; | 97 virtual void OnNativeWidgetFocus() OVERRIDE; |
| 98 virtual void OnNativeWidgetBlur() OVERRIDE; | 98 virtual void OnNativeWidgetBlur() OVERRIDE; |
| 99 virtual void SetInactiveRenderingDisabled(bool disable_inactive) OVERRIDE; |
| 99 | 100 |
| 100 // Overridden from aura::RootWindowHost: | 101 // Overridden from aura::RootWindowHost: |
| 101 virtual void SetDelegate(aura::RootWindowHostDelegate* delegate) OVERRIDE; | 102 virtual void SetDelegate(aura::RootWindowHostDelegate* delegate) OVERRIDE; |
| 102 virtual aura::RootWindow* GetRootWindow() OVERRIDE; | 103 virtual aura::RootWindow* GetRootWindow() OVERRIDE; |
| 103 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; | 104 virtual gfx::AcceleratedWidget GetAcceleratedWidget() OVERRIDE; |
| 104 virtual void Show() OVERRIDE; | 105 virtual void Show() OVERRIDE; |
| 105 virtual void Hide() OVERRIDE; | 106 virtual void Hide() OVERRIDE; |
| 106 virtual void ToggleFullScreen() OVERRIDE; | 107 virtual void ToggleFullScreen() OVERRIDE; |
| 107 virtual gfx::Rect GetBounds() const OVERRIDE; | 108 virtual gfx::Rect GetBounds() const OVERRIDE; |
| 108 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; | 109 virtual void SetBounds(const gfx::Rect& bounds) OVERRIDE; |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 // rather than asking the Widget for the non_client_view so that we know at | 263 // rather than asking the Widget for the non_client_view so that we know at |
| 263 // Init time, before the Widget has created the NonClientView. | 264 // Init time, before the Widget has created the NonClientView. |
| 264 bool has_non_client_view_; | 265 bool has_non_client_view_; |
| 265 | 266 |
| 266 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); | 267 DISALLOW_COPY_AND_ASSIGN(DesktopRootWindowHostWin); |
| 267 }; | 268 }; |
| 268 | 269 |
| 269 } // namespace views | 270 } // namespace views |
| 270 | 271 |
| 271 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ | 272 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_ROOT_WINDOW_HOST_WIN_H_ |
| OLD | NEW |