| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_MUS_WINDOW_MANAGER_APPLICATION_H_ | 5 #ifndef ASH_MUS_WINDOW_MANAGER_APPLICATION_H_ |
| 6 #define ASH_MUS_WINDOW_MANAGER_APPLICATION_H_ | 6 #define ASH_MUS_WINDOW_MANAGER_APPLICATION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 class ScopedFakeStatisticsProvider; | 28 class ScopedFakeStatisticsProvider; |
| 29 } | 29 } |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace views { | 32 namespace views { |
| 33 class AuraInit; | 33 class AuraInit; |
| 34 class SurfaceContextFactory; | 34 class SurfaceContextFactory; |
| 35 } | 35 } |
| 36 | 36 |
| 37 namespace ui { | 37 namespace ui { |
| 38 class Event; | |
| 39 class GpuService; | 38 class GpuService; |
| 40 class WindowTreeClient; | 39 class WindowTreeClient; |
| 41 } | 40 } |
| 42 | 41 |
| 43 namespace ash { | 42 namespace ash { |
| 44 namespace mus { | 43 namespace mus { |
| 45 | 44 |
| 46 class NativeWidgetFactoryMus; | 45 class NativeWidgetFactoryMus; |
| 47 class NetworkConnectDelegateMus; | 46 class NetworkConnectDelegateMus; |
| 48 class WindowManager; | 47 class WindowManager; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 statistics_provider_; | 101 statistics_provider_; |
| 103 #endif | 102 #endif |
| 104 | 103 |
| 105 DISALLOW_COPY_AND_ASSIGN(WindowManagerApplication); | 104 DISALLOW_COPY_AND_ASSIGN(WindowManagerApplication); |
| 106 }; | 105 }; |
| 107 | 106 |
| 108 } // namespace mus | 107 } // namespace mus |
| 109 } // namespace ash | 108 } // namespace ash |
| 110 | 109 |
| 111 #endif // ASH_MUS_WINDOW_MANAGER_APPLICATION_H_ | 110 #endif // ASH_MUS_WINDOW_MANAGER_APPLICATION_H_ |
| OLD | NEW |