| OLD | NEW |
| (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 | |
| OLD | NEW |