| 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 UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ | 5 #ifndef UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ |
| 6 #define UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ | 6 #define UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 namespace service_manager { | 24 namespace service_manager { |
| 25 class Connector; | 25 class Connector; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace ui { | 28 namespace ui { |
| 29 class GpuService; | 29 class GpuService; |
| 30 } | 30 } |
| 31 | 31 |
| 32 namespace views { | 32 namespace views { |
| 33 class NativeWidget; | 33 class NativeWidget; |
| 34 class PointerWatcher; | |
| 35 class PointerWatcherEventRouter; | 34 class PointerWatcherEventRouter; |
| 36 class ScreenMus; | 35 class ScreenMus; |
| 37 class SurfaceContextFactory; | 36 class SurfaceContextFactory; |
| 38 namespace internal { | 37 namespace internal { |
| 39 class NativeWidgetDelegate; | 38 class NativeWidgetDelegate; |
| 40 } | 39 } |
| 41 | 40 |
| 42 namespace test { | 41 namespace test { |
| 43 class WindowManagerConnectionTestApi; | 42 class WindowManagerConnectionTestApi; |
| 44 } | 43 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 std::unique_ptr<ui::GpuService> gpu_service_; | 117 std::unique_ptr<ui::GpuService> gpu_service_; |
| 119 std::unique_ptr<PointerWatcherEventRouter> pointer_watcher_event_router_; | 118 std::unique_ptr<PointerWatcherEventRouter> pointer_watcher_event_router_; |
| 120 std::unique_ptr<SurfaceContextFactory> compositor_context_factory_; | 119 std::unique_ptr<SurfaceContextFactory> compositor_context_factory_; |
| 121 | 120 |
| 122 DISALLOW_COPY_AND_ASSIGN(WindowManagerConnection); | 121 DISALLOW_COPY_AND_ASSIGN(WindowManagerConnection); |
| 123 }; | 122 }; |
| 124 | 123 |
| 125 } // namespace views | 124 } // namespace views |
| 126 | 125 |
| 127 #endif // UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ | 126 #endif // UI_VIEWS_MUS_WINDOW_MANAGER_CONNECTION_H_ |
| OLD | NEW |