| 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 26 matching lines...) Expand all Loading... |
| 37 #include "services/ui/ws/window_server_delegate.h" | 37 #include "services/ui/ws/window_server_delegate.h" |
| 38 | 38 |
| 39 #if defined(USE_OZONE) | 39 #if defined(USE_OZONE) |
| 40 #include "ui/ozone/public/client_native_pixmap_factory.h" | 40 #include "ui/ozone/public/client_native_pixmap_factory.h" |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 namespace display { | 43 namespace display { |
| 44 class ScreenManager; | 44 class ScreenManager; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace gfx { | |
| 48 class Rect; | |
| 49 } | |
| 50 | |
| 51 namespace service_manager { | 47 namespace service_manager { |
| 52 class Connector; | 48 class Connector; |
| 53 } | 49 } |
| 54 | 50 |
| 55 namespace ui { | 51 namespace ui { |
| 56 | 52 |
| 57 class PlatformEventSource; | 53 class PlatformEventSource; |
| 58 | 54 |
| 59 namespace ws { | 55 namespace ws { |
| 60 class ForwardingWindowManager; | |
| 61 class WindowServer; | 56 class WindowServer; |
| 62 } | 57 } |
| 63 | 58 |
| 64 class Service | 59 class Service |
| 65 : public service_manager::Service, | 60 : public service_manager::Service, |
| 66 public ws::WindowServerDelegate, | 61 public ws::WindowServerDelegate, |
| 67 public service_manager::InterfaceFactory<mojom::AccessibilityManager>, | 62 public service_manager::InterfaceFactory<mojom::AccessibilityManager>, |
| 68 public service_manager::InterfaceFactory<mojom::Clipboard>, | 63 public service_manager::InterfaceFactory<mojom::Clipboard>, |
| 69 public service_manager::InterfaceFactory<mojom::DisplayManager>, | 64 public service_manager::InterfaceFactory<mojom::DisplayManager>, |
| 70 public service_manager::InterfaceFactory<mojom::GpuService>, | 65 public service_manager::InterfaceFactory<mojom::GpuService>, |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 std::unique_ptr<ws::TouchController> touch_controller_; | 181 std::unique_ptr<ws::TouchController> touch_controller_; |
| 187 IMERegistrarImpl ime_registrar_; | 182 IMERegistrarImpl ime_registrar_; |
| 188 IMEServerImpl ime_server_; | 183 IMEServerImpl ime_server_; |
| 189 | 184 |
| 190 DISALLOW_COPY_AND_ASSIGN(Service); | 185 DISALLOW_COPY_AND_ASSIGN(Service); |
| 191 }; | 186 }; |
| 192 | 187 |
| 193 } // namespace ui | 188 } // namespace ui |
| 194 | 189 |
| 195 #endif // SERVICES_UI_SERVICE_H_ | 190 #endif // SERVICES_UI_SERVICE_H_ |
| OLD | NEW |