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

Side by Side Diff: services/service_manager/public/cpp/lib/service_info.cc

Issue 2425563004: Support reading multiple InterfaceProviderSpecs from manifests (Closed)
Patch Set: . Created 4 years, 1 month 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 2016 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/service_manager/public/cpp/service_info.h"
6
7 namespace service_manager {
8
9 ServiceInfo::ServiceInfo() = default;
10 ServiceInfo::ServiceInfo(const Identity& identity,
11 const InterfaceProviderSpecMap& specs)
12 : identity(identity),
13 interface_provider_specs(specs) {}
14 ServiceInfo::ServiceInfo(const ServiceInfo& other) = default;
15 ServiceInfo::~ServiceInfo() {}
16
17 } // namespace service_manager
OLDNEW
« no previous file with comments | « services/service_manager/public/cpp/lib/service_context.cc ('k') | services/service_manager/public/cpp/service_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698