Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: media/mojo/services/service_factory_impl.cc

Issue 1686223002: Move InterfaceProvider into the shell::mojom namespace like the rest of the shell interfaces. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/mojo/services/service_factory_impl.h ('k') | mojo/shell/application_instance.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/cdm_factory.h" 8 #include "media/base/cdm_factory.h"
9 #include "media/base/media_log.h" 9 #include "media/base/media_log.h"
10 #include "media/base/renderer_factory.h" 10 #include "media/base/renderer_factory.h"
11 #include "media/mojo/services/mojo_cdm_service.h" 11 #include "media/mojo/services/mojo_cdm_service.h"
12 #include "media/mojo/services/mojo_media_client.h" 12 #include "media/mojo/services/mojo_media_client.h"
13 #include "media/mojo/services/mojo_renderer_service.h" 13 #include "media/mojo/services/mojo_renderer_service.h"
14 #include "mojo/shell/public/cpp/app_lifetime_helper.h" 14 #include "mojo/shell/public/cpp/app_lifetime_helper.h"
15 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" 15 #include "mojo/shell/public/interfaces/interface_provider.mojom.h"
16 16
17 namespace media { 17 namespace media {
18 18
19 ServiceFactoryImpl::ServiceFactoryImpl( 19 ServiceFactoryImpl::ServiceFactoryImpl(
20 mojo::InterfaceRequest<interfaces::ServiceFactory> request, 20 mojo::InterfaceRequest<interfaces::ServiceFactory> request,
21 mojo::InterfaceProvider* interfaces, 21 mojo::shell::mojom::InterfaceProvider* interfaces,
22 scoped_refptr<MediaLog> media_log, 22 scoped_refptr<MediaLog> media_log,
23 scoped_ptr<mojo::AppRefCount> parent_app_refcount, 23 scoped_ptr<mojo::AppRefCount> parent_app_refcount,
24 MojoMediaClient* mojo_media_client) 24 MojoMediaClient* mojo_media_client)
25 : binding_(this, std::move(request)), 25 : binding_(this, std::move(request)),
26 interfaces_(interfaces), 26 interfaces_(interfaces),
27 media_log_(media_log), 27 media_log_(media_log),
28 parent_app_refcount_(std::move(parent_app_refcount)), 28 parent_app_refcount_(std::move(parent_app_refcount)),
29 mojo_media_client_(mojo_media_client) { 29 mojo_media_client_(mojo_media_client) {
30 DVLOG(1) << __FUNCTION__; 30 DVLOG(1) << __FUNCTION__;
31 } 31 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 82
83 CdmFactory* ServiceFactoryImpl::GetCdmFactory() { 83 CdmFactory* ServiceFactoryImpl::GetCdmFactory() {
84 if (!cdm_factory_) { 84 if (!cdm_factory_) {
85 cdm_factory_ = mojo_media_client_->CreateCdmFactory(interfaces_); 85 cdm_factory_ = mojo_media_client_->CreateCdmFactory(interfaces_);
86 LOG_IF(ERROR, !cdm_factory_) << "CdmFactory not available."; 86 LOG_IF(ERROR, !cdm_factory_) << "CdmFactory not available.";
87 } 87 }
88 return cdm_factory_.get(); 88 return cdm_factory_.get();
89 } 89 }
90 90
91 } // namespace media 91 } // namespace media
OLDNEW
« no previous file with comments | « media/mojo/services/service_factory_impl.h ('k') | mojo/shell/application_instance.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698