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

Side by Side Diff: services/resource_coordinator/resource_coordinator_service.cc

Issue 2798713002: Global Resource Coordinator: Basic service internals (Closed)
Patch Set: Buildfix after rebase Created 3 years, 7 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
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "services/resource_coordinator/resource_coordinator_service.h"
6
7 #include "base/macros.h"
8 #include "services/resource_coordinator/coordination_unit/coordination_unit_prov ider_impl.h"
9 #include "services/service_manager/public/cpp/service_context.h"
10
11 namespace resource_coordinator {
12
13 std::unique_ptr<service_manager::Service> ResourceCoordinatorService::Create() {
14 return base::MakeUnique<ResourceCoordinatorService>();
15 }
16
17 ResourceCoordinatorService::ResourceCoordinatorService()
18 : weak_factory_(this) {}
19
20 ResourceCoordinatorService::~ResourceCoordinatorService() = default;
21
22 void ResourceCoordinatorService::OnStart() {
23 ref_factory_.reset(new service_manager::ServiceContextRefFactory(
24 base::Bind(&service_manager::ServiceContext::RequestQuit,
25 base::Unretained(context()))));
26
27 registry_.AddInterface(base::Bind(&CoordinationUnitProviderImpl::Create,
28 base::Unretained(ref_factory_.get())));
29 }
30
31 void ResourceCoordinatorService::OnBindInterface(
32 const service_manager::BindSourceInfo& source_info,
33 const std::string& interface_name,
34 mojo::ScopedMessagePipeHandle interface_pipe) {
35 registry_.BindInterface(source_info, interface_name,
36 std::move(interface_pipe));
37 }
38
39 } // namespace speed
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698