| 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 MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ | 5 #ifndef MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ |
| 6 #define MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ | 6 #define MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "media/mojo/interfaces/media_service.mojom.h" | 15 #include "media/mojo/interfaces/media_service.mojom.h" |
| 16 #include "media/mojo/interfaces/service_factory.mojom.h" | 16 #include "media/mojo/interfaces/service_factory.mojom.h" |
| 17 #include "media/mojo/services/media_mojo_export.h" | 17 #include "media/mojo/services/media_mojo_export.h" |
| 18 #include "mojo/public/cpp/bindings/binding_set.h" | 18 #include "mojo/public/cpp/bindings/binding_set.h" |
| 19 #include "services/service_manager/public/cpp/interface_factory.h" | 19 #include "services/service_manager/public/cpp/interface_factory.h" |
| 20 #include "services/service_manager/public/cpp/service.h" | 20 #include "services/service_manager/public/cpp/service.h" |
| 21 #include "services/service_manager/public/cpp/service_context_ref.h" | 21 #include "services/service_manager/public/cpp/service_context_ref.h" |
| 22 #include "url/gurl.h" | 22 #include "url/gurl.h" |
| 23 | 23 |
| 24 namespace media { | 24 namespace media { |
| 25 | 25 |
| 26 class MediaLog; | 26 class MediaLog; |
| 27 class MojoMediaClient; | 27 class MojoMediaClient; |
| 28 | 28 |
| 29 class MEDIA_MOJO_EXPORT MojoMediaApplication | 29 class MEDIA_MOJO_EXPORT MojoMediaApplication |
| 30 : public NON_EXPORTED_BASE(shell::Service), | 30 : public NON_EXPORTED_BASE(service_manager::Service), |
| 31 public NON_EXPORTED_BASE(shell::InterfaceFactory<mojom::MediaService>), | 31 public NON_EXPORTED_BASE( |
| 32 service_manager::InterfaceFactory<mojom::MediaService>), |
| 32 public NON_EXPORTED_BASE(mojom::MediaService) { | 33 public NON_EXPORTED_BASE(mojom::MediaService) { |
| 33 public: | 34 public: |
| 34 MojoMediaApplication(std::unique_ptr<MojoMediaClient> mojo_media_client, | 35 MojoMediaApplication(std::unique_ptr<MojoMediaClient> mojo_media_client, |
| 35 const base::Closure& quit_closure); | 36 const base::Closure& quit_closure); |
| 36 ~MojoMediaApplication() final; | 37 ~MojoMediaApplication() final; |
| 37 | 38 |
| 38 private: | 39 private: |
| 39 // shell::Service implementation. | 40 // service_manager::Service implementation. |
| 40 void OnStart(const shell::Identity& identity) final; | 41 void OnStart(const service_manager::Identity& identity) final; |
| 41 bool OnConnect(const shell::Identity& remote_identity, | 42 bool OnConnect(const service_manager::Identity& remote_identity, |
| 42 shell::InterfaceRegistry* registry) final; | 43 service_manager::InterfaceRegistry* registry) final; |
| 43 bool OnStop() final; | 44 bool OnStop() final; |
| 44 | 45 |
| 45 // shell::InterfaceFactory<mojom::MediaService> implementation. | 46 // service_manager::InterfaceFactory<mojom::MediaService> implementation. |
| 46 void Create(const shell::Identity& remote_identity, | 47 void Create(const service_manager::Identity& remote_identity, |
| 47 mojom::MediaServiceRequest request) final; | 48 mojom::MediaServiceRequest request) final; |
| 48 | 49 |
| 49 // mojom::MediaService implementation. | 50 // mojom::MediaService implementation. |
| 50 void CreateServiceFactory( | 51 void CreateServiceFactory( |
| 51 mojom::ServiceFactoryRequest request, | 52 mojom::ServiceFactoryRequest request, |
| 52 shell::mojom::InterfaceProviderPtr remote_interfaces) final; | 53 service_manager::mojom::InterfaceProviderPtr remote_interfaces) final; |
| 53 | 54 |
| 54 // Note: Since each instance runs on a different thread, do not share a common | 55 // Note: Since each instance runs on a different thread, do not share a common |
| 55 // MojoMediaClient with other instances to avoid threading issues. Hence using | 56 // MojoMediaClient with other instances to avoid threading issues. Hence using |
| 56 // a unique_ptr here. | 57 // a unique_ptr here. |
| 57 std::unique_ptr<MojoMediaClient> mojo_media_client_; | 58 std::unique_ptr<MojoMediaClient> mojo_media_client_; |
| 58 | 59 |
| 59 scoped_refptr<MediaLog> media_log_; | 60 scoped_refptr<MediaLog> media_log_; |
| 60 shell::ServiceContextRefFactory ref_factory_; | 61 service_manager::ServiceContextRefFactory ref_factory_; |
| 61 | 62 |
| 62 mojo::BindingSet<mojom::MediaService> bindings_; | 63 mojo::BindingSet<mojom::MediaService> bindings_; |
| 63 }; | 64 }; |
| 64 | 65 |
| 65 } // namespace media | 66 } // namespace media |
| 66 | 67 |
| 67 #endif // MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ | 68 #endif // MEDIA_MOJO_SERVICES_MOJO_MEDIA_APPLICATION_H_ |
| OLD | NEW |