| 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 "base/macros.h" | 8 #include "base/macros.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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 bool IsVisible() const override; | 59 bool IsVisible() const override; |
| 60 void SetSize(const gfx::Size& size) override; | 60 void SetSize(const gfx::Size& size) override; |
| 61 void StackAbove(aura::Window* window) override; | 61 void StackAbove(aura::Window* window) override; |
| 62 void StackAtTop() override; | 62 void StackAtTop() override; |
| 63 void CenterWindow(const gfx::Size& size) override; | 63 void CenterWindow(const gfx::Size& size) override; |
| 64 void GetWindowPlacement(gfx::Rect* bounds, | 64 void GetWindowPlacement(gfx::Rect* bounds, |
| 65 ui::WindowShowState* show_state) const override; | 65 ui::WindowShowState* show_state) const override; |
| 66 gfx::Rect GetWindowBoundsInScreen() const override; | 66 gfx::Rect GetWindowBoundsInScreen() const override; |
| 67 gfx::Rect GetClientAreaBoundsInScreen() const override; | 67 gfx::Rect GetClientAreaBoundsInScreen() const override; |
| 68 gfx::Rect GetRestoredBounds() const override; | 68 gfx::Rect GetRestoredBounds() const override; |
| 69 std::string GetWorkspace() const override; |
| 69 gfx::Rect GetWorkAreaBoundsInScreen() const override; | 70 gfx::Rect GetWorkAreaBoundsInScreen() const override; |
| 70 void SetShape(SkRegion* native_region) override; | 71 void SetShape(SkRegion* native_region) override; |
| 71 void Activate() override; | 72 void Activate() override; |
| 72 void Deactivate() override; | 73 void Deactivate() override; |
| 73 bool IsActive() const override; | 74 bool IsActive() const override; |
| 74 void Maximize() override; | 75 void Maximize() override; |
| 75 void Minimize() override; | 76 void Minimize() override; |
| 76 void Restore() override; | 77 void Restore() override; |
| 77 bool IsMaximized() const override; | 78 bool IsMaximized() const override; |
| 78 bool IsMinimized() const override; | 79 bool IsMinimized() const override; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 // Indicates if current window will receive mouse events when should not | 265 // Indicates if current window will receive mouse events when should not |
| 265 // become activated. | 266 // become activated. |
| 266 bool wants_mouse_events_when_inactive_ = false; | 267 bool wants_mouse_events_when_inactive_ = false; |
| 267 | 268 |
| 268 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); | 269 DISALLOW_COPY_AND_ASSIGN(DesktopWindowTreeHostWin); |
| 269 }; | 270 }; |
| 270 | 271 |
| 271 } // namespace views | 272 } // namespace views |
| 272 | 273 |
| 273 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ | 274 #endif // UI_VIEWS_WIDGET_DESKTOP_AURA_DESKTOP_WINDOW_TREE_HOST_WIN_H_ |
| OLD | NEW |