| 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_WM_AURA_WM_GLOBALS_AURA_H_ | 5 #ifndef ASH_WM_AURA_WM_GLOBALS_AURA_H_ |
| 6 #define ASH_WM_AURA_WM_GLOBALS_AURA_H_ | 6 #define ASH_WM_AURA_WM_GLOBALS_AURA_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 static WmGlobalsAura* Get(); | 29 static WmGlobalsAura* Get(); |
| 30 | 30 |
| 31 // WmGlobals: | 31 // WmGlobals: |
| 32 WmWindow* GetFocusedWindow() override; | 32 WmWindow* GetFocusedWindow() override; |
| 33 WmWindow* GetActiveWindow() override; | 33 WmWindow* GetActiveWindow() override; |
| 34 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; | 34 WmWindow* GetRootWindowForDisplayId(int64_t display_id) override; |
| 35 WmWindow* GetRootWindowForNewWindows() override; | 35 WmWindow* GetRootWindowForNewWindows() override; |
| 36 std::vector<WmWindow*> GetMruWindowListIgnoreModals() override; | 36 std::vector<WmWindow*> GetMruWindowListIgnoreModals() override; |
| 37 bool IsForceMaximizeOnFirstRun() override; | 37 bool IsForceMaximizeOnFirstRun() override; |
| 38 bool IsScreenLocked() override; |
| 38 void LockCursor() override; | 39 void LockCursor() override; |
| 39 void UnlockCursor() override; | 40 void UnlockCursor() override; |
| 40 std::vector<WmWindow*> GetAllRootWindows() override; | 41 std::vector<WmWindow*> GetAllRootWindows() override; |
| 41 UserMetricsRecorder* GetUserMetricsRecorder() override; | 42 UserMetricsRecorder* GetUserMetricsRecorder() override; |
| 42 void AddActivationObserver(WmActivationObserver* observer) override; | 43 void AddActivationObserver(WmActivationObserver* observer) override; |
| 43 void RemoveActivationObserver(WmActivationObserver* observer) override; | 44 void RemoveActivationObserver(WmActivationObserver* observer) override; |
| 44 void AddDisplayObserver(WmDisplayObserver* observer) override; | 45 void AddDisplayObserver(WmDisplayObserver* observer) override; |
| 45 void RemoveDisplayObserver(WmDisplayObserver* observer) override; | 46 void RemoveDisplayObserver(WmDisplayObserver* observer) override; |
| 46 void AddOverviewModeObserver(WmOverviewModeObserver* observer) override; | 47 void AddOverviewModeObserver(WmOverviewModeObserver* observer) override; |
| 47 void RemoveOverviewModeObserver(WmOverviewModeObserver* observer) override; | 48 void RemoveOverviewModeObserver(WmOverviewModeObserver* observer) override; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 66 | 67 |
| 67 base::ObserverList<WmOverviewModeObserver> overview_mode_observers_; | 68 base::ObserverList<WmOverviewModeObserver> overview_mode_observers_; |
| 68 | 69 |
| 69 DISALLOW_COPY_AND_ASSIGN(WmGlobalsAura); | 70 DISALLOW_COPY_AND_ASSIGN(WmGlobalsAura); |
| 70 }; | 71 }; |
| 71 | 72 |
| 72 } // namespace wm | 73 } // namespace wm |
| 73 } // namespace ash | 74 } // namespace ash |
| 74 | 75 |
| 75 #endif // ASH_WM_AURA_WM_GLOBALS_AURA_H_ | 76 #endif // ASH_WM_AURA_WM_GLOBALS_AURA_H_ |
| OLD | NEW |