| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 SERVICES_UI_SERVICE_H_ | 5 #ifndef SERVICES_UI_SERVICE_H_ |
| 6 #define SERVICES_UI_SERVICE_H_ | 6 #define SERVICES_UI_SERVICE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 #include "services/ui/public/interfaces/user_access_manager.mojom.h" | 29 #include "services/ui/public/interfaces/user_access_manager.mojom.h" |
| 30 #include "services/ui/public/interfaces/user_activity_monitor.mojom.h" | 30 #include "services/ui/public/interfaces/user_activity_monitor.mojom.h" |
| 31 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" | 31 #include "services/ui/public/interfaces/window_manager_window_tree_factory.mojom
.h" |
| 32 #include "services/ui/public/interfaces/window_server_test.mojom.h" | 32 #include "services/ui/public/interfaces/window_server_test.mojom.h" |
| 33 #include "services/ui/public/interfaces/window_tree.mojom.h" | 33 #include "services/ui/public/interfaces/window_tree.mojom.h" |
| 34 #include "services/ui/public/interfaces/window_tree_host.mojom.h" | 34 #include "services/ui/public/interfaces/window_tree_host.mojom.h" |
| 35 #include "services/ui/ws/user_id.h" | 35 #include "services/ui/ws/user_id.h" |
| 36 #include "services/ui/ws/window_server_delegate.h" | 36 #include "services/ui/ws/window_server_delegate.h" |
| 37 | 37 |
| 38 #if defined(USE_OZONE) | 38 #if defined(USE_OZONE) |
| 39 #include "ui/ozone/public/client_native_pixmap_factory.h" | 39 #include "ui/ozone/public/client_native_pixmap_factory_ozone.h" |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 namespace discardable_memory { | 42 namespace discardable_memory { |
| 43 class DiscardableSharedMemoryManager; | 43 class DiscardableSharedMemoryManager; |
| 44 } | 44 } |
| 45 | 45 |
| 46 namespace display { | 46 namespace display { |
| 47 class ScreenManager; | 47 class ScreenManager; |
| 48 } | 48 } |
| 49 | 49 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 | 193 |
| 194 std::unique_ptr<discardable_memory::DiscardableSharedMemoryManager> | 194 std::unique_ptr<discardable_memory::DiscardableSharedMemoryManager> |
| 195 discardable_shared_memory_manager_; | 195 discardable_shared_memory_manager_; |
| 196 | 196 |
| 197 DISALLOW_COPY_AND_ASSIGN(Service); | 197 DISALLOW_COPY_AND_ASSIGN(Service); |
| 198 }; | 198 }; |
| 199 | 199 |
| 200 } // namespace ui | 200 } // namespace ui |
| 201 | 201 |
| 202 #endif // SERVICES_UI_SERVICE_H_ | 202 #endif // SERVICES_UI_SERVICE_H_ |
| OLD | NEW |