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 #include "media/mojo/services/service_factory_impl.h" | 5 #include "media/mojo/services/service_factory_impl.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "media/base/media_log.h" | 8 #include "media/base/media_log.h" |
9 #include "media/mojo/services/mojo_media_client.h" | 9 #include "media/mojo/services/mojo_media_client.h" |
10 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 10 #include "services/shell/public/interfaces/interface_provider.mojom.h" |
11 | 11 |
12 #if defined(ENABLE_MOJO_AUDIO_DECODER) | 12 #if defined(ENABLE_MOJO_AUDIO_DECODER) |
13 #include "media/mojo/services/mojo_audio_decoder_service.h" | 13 #include "media/mojo/services/mojo_audio_decoder_service.h" |
14 #endif // defined(ENABLE_MOJO_AUDIO_DECODER) | 14 #endif // defined(ENABLE_MOJO_AUDIO_DECODER) |
15 | 15 |
16 #if defined(ENABLE_MOJO_RENDERER) | 16 #if defined(ENABLE_MOJO_RENDERER) |
17 #include "media/base/renderer_factory.h" | 17 #include "media/base/renderer_factory.h" |
18 #include "media/mojo/services/mojo_renderer_service.h" | 18 #include "media/mojo/services/mojo_renderer_service.h" |
19 #endif // defined(ENABLE_MOJO_RENDERER) | 19 #endif // defined(ENABLE_MOJO_RENDERER) |
20 | 20 |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 CdmFactory* ServiceFactoryImpl::GetCdmFactory() { | 119 CdmFactory* ServiceFactoryImpl::GetCdmFactory() { |
120 if (!cdm_factory_) { | 120 if (!cdm_factory_) { |
121 cdm_factory_ = mojo_media_client_->CreateCdmFactory(interfaces_); | 121 cdm_factory_ = mojo_media_client_->CreateCdmFactory(interfaces_); |
122 LOG_IF(ERROR, !cdm_factory_) << "CdmFactory not available."; | 122 LOG_IF(ERROR, !cdm_factory_) << "CdmFactory not available."; |
123 } | 123 } |
124 return cdm_factory_.get(); | 124 return cdm_factory_.get(); |
125 } | 125 } |
126 #endif // defined(ENABLE_MOJO_CDM) | 126 #endif // defined(ENABLE_MOJO_CDM) |
127 | 127 |
128 } // namespace media | 128 } // namespace media |
OLD | NEW |