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_COMMON_WM_GLOBALS_H_ | 5 #ifndef ASH_COMMON_WM_WM_GLOBALS_H_ |
6 #define ASH_WM_COMMON_WM_GLOBALS_H_ | 6 #define ASH_COMMON_WM_WM_GLOBALS_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "ash/ash_export.h" | 13 #include "ash/ash_export.h" |
14 | 14 |
15 namespace gfx { | 15 namespace gfx { |
16 class Rect; | 16 class Rect; |
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 virtual void AddOverviewModeObserver(WmOverviewModeObserver* observer) = 0; | 100 virtual void AddOverviewModeObserver(WmOverviewModeObserver* observer) = 0; |
101 virtual void RemoveOverviewModeObserver(WmOverviewModeObserver* observer) = 0; | 101 virtual void RemoveOverviewModeObserver(WmOverviewModeObserver* observer) = 0; |
102 | 102 |
103 private: | 103 private: |
104 static WmGlobals* instance_; | 104 static WmGlobals* instance_; |
105 }; | 105 }; |
106 | 106 |
107 } // namespace wm | 107 } // namespace wm |
108 } // namespace ash | 108 } // namespace ash |
109 | 109 |
110 #endif // ASH_WM_COMMON_WM_GLOBALS_H_ | 110 #endif // ASH_COMMON_WM_WM_GLOBALS_H_ |
OLD | NEW |