| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 ASH_AURA_WM_SHELL_AURA_H_ | 5 #ifndef ASH_AURA_WM_SHELL_AURA_H_ |
| 6 #define ASH_AURA_WM_SHELL_AURA_H_ | 6 #define ASH_AURA_WM_SHELL_AURA_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 WmWindow* GetPrimaryRootWindow() override; | 40 WmWindow* GetPrimaryRootWindow() override; |
| 41 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; | 41 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; |
| 42 const display::ManagedDisplayInfo& GetDisplayInfo( | 42 const display::ManagedDisplayInfo& GetDisplayInfo( |
| 43 int64_t display_id) const override; | 43 int64_t display_id) const override; |
| 44 bool IsActiveDisplayId(int64_t display_id) const override; | 44 bool IsActiveDisplayId(int64_t display_id) const override; |
| 45 display::Display GetFirstDisplay() const override; | 45 display::Display GetFirstDisplay() const override; |
| 46 bool IsInUnifiedMode() const override; | 46 bool IsInUnifiedMode() const override; |
| 47 bool IsInUnifiedModeIgnoreMirroring() const override; | 47 bool IsInUnifiedModeIgnoreMirroring() const override; |
| 48 void SetDisplayWorkAreaInsets(WmWindow* window, | 48 void SetDisplayWorkAreaInsets(WmWindow* window, |
| 49 const gfx::Insets& insets) override; | 49 const gfx::Insets& insets) override; |
| 50 bool IsPinned() override; | |
| 51 void SetPinnedWindow(WmWindow* window) override; | |
| 52 void LockCursor() override; | 50 void LockCursor() override; |
| 53 void UnlockCursor() override; | 51 void UnlockCursor() override; |
| 54 bool IsMouseEventsEnabled() override; | 52 bool IsMouseEventsEnabled() override; |
| 55 std::vector<WmWindow*> GetAllRootWindows() override; | 53 std::vector<WmWindow*> GetAllRootWindows() override; |
| 56 void RecordGestureAction(GestureActionType action) override; | 54 void RecordGestureAction(GestureActionType action) override; |
| 57 void RecordUserMetricsAction(UserMetricsAction action) override; | 55 void RecordUserMetricsAction(UserMetricsAction action) override; |
| 58 void RecordTaskSwitchMetric(TaskSwitchSource source) override; | 56 void RecordTaskSwitchMetric(TaskSwitchSource source) override; |
| 59 std::unique_ptr<WindowResizer> CreateDragWindowResizer( | 57 std::unique_ptr<WindowResizer> CreateDragWindowResizer( |
| 60 std::unique_ptr<WindowResizer> next_window_resizer, | 58 std::unique_ptr<WindowResizer> next_window_resizer, |
| 61 wm::WindowState* window_state) override; | 59 wm::WindowState* window_state) override; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 96 |
| 99 std::unique_ptr<AcceleratorControllerDelegateAura> | 97 std::unique_ptr<AcceleratorControllerDelegateAura> |
| 100 accelerator_controller_delegate_; | 98 accelerator_controller_delegate_; |
| 101 | 99 |
| 102 DISALLOW_COPY_AND_ASSIGN(WmShellAura); | 100 DISALLOW_COPY_AND_ASSIGN(WmShellAura); |
| 103 }; | 101 }; |
| 104 | 102 |
| 105 } // namespace ash | 103 } // namespace ash |
| 106 | 104 |
| 107 #endif // ASH_AURA_WM_SHELL_AURA_H_ | 105 #endif // ASH_AURA_WM_SHELL_AURA_H_ |
| OLD | NEW |