| 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 24 matching lines...) Expand all Loading... |
| 35 WmWindow* GetActiveWindow() override; | 35 WmWindow* GetActiveWindow() override; |
| 36 WmWindow* GetCaptureWindow() override; | 36 WmWindow* GetCaptureWindow() override; |
| 37 WmWindow* GetPrimaryRootWindow() override; | 37 WmWindow* GetPrimaryRootWindow() override; |
| 38 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; | 38 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; |
| 39 const display::ManagedDisplayInfo& GetDisplayInfo( | 39 const display::ManagedDisplayInfo& GetDisplayInfo( |
| 40 int64_t display_id) const override; | 40 int64_t display_id) const override; |
| 41 bool IsActiveDisplayId(int64_t display_id) const override; | 41 bool IsActiveDisplayId(int64_t display_id) const override; |
| 42 display::Display GetFirstDisplay() const override; | 42 display::Display GetFirstDisplay() const override; |
| 43 bool IsInUnifiedMode() const override; | 43 bool IsInUnifiedMode() const override; |
| 44 bool IsInUnifiedModeIgnoreMirroring() const override; | 44 bool IsInUnifiedModeIgnoreMirroring() const override; |
| 45 bool IsForceMaximizeOnFirstRun() override; | |
| 46 void SetDisplayWorkAreaInsets(WmWindow* window, | 45 void SetDisplayWorkAreaInsets(WmWindow* window, |
| 47 const gfx::Insets& insets) override; | 46 const gfx::Insets& insets) override; |
| 48 bool IsPinned() override; | 47 bool IsPinned() override; |
| 49 void SetPinnedWindow(WmWindow* window) override; | 48 void SetPinnedWindow(WmWindow* window) override; |
| 50 void LockCursor() override; | 49 void LockCursor() override; |
| 51 void UnlockCursor() override; | 50 void UnlockCursor() override; |
| 52 bool IsMouseEventsEnabled() override; | 51 bool IsMouseEventsEnabled() override; |
| 53 std::vector<WmWindow*> GetAllRootWindows() override; | 52 std::vector<WmWindow*> GetAllRootWindows() override; |
| 54 void RecordGestureAction(GestureActionType action) override; | 53 void RecordGestureAction(GestureActionType action) override; |
| 55 void RecordUserMetricsAction(UserMetricsAction action) override; | 54 void RecordUserMetricsAction(UserMetricsAction action) override; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 | 95 |
| 97 bool added_display_observer_ = false; | 96 bool added_display_observer_ = false; |
| 98 base::ObserverList<WmDisplayObserver> display_observers_; | 97 base::ObserverList<WmDisplayObserver> display_observers_; |
| 99 | 98 |
| 100 DISALLOW_COPY_AND_ASSIGN(WmShellAura); | 99 DISALLOW_COPY_AND_ASSIGN(WmShellAura); |
| 101 }; | 100 }; |
| 102 | 101 |
| 103 } // namespace ash | 102 } // namespace ash |
| 104 | 103 |
| 105 #endif // ASH_AURA_WM_SHELL_AURA_H_ | 104 #endif // ASH_AURA_WM_SHELL_AURA_H_ |
| OLD | NEW |