chromium/services/service_manager/public/cpp/interface_provider_spec.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "services/service_manager/public/cpp/interface_provider_spec.h"

#include <tuple>

#include "base/check.h"

namespace service_manager {

InterfaceProviderSpec::InterfaceProviderSpec() {}
InterfaceProviderSpec::InterfaceProviderSpec(
    const InterfaceProviderSpec& other) = default;
InterfaceProviderSpec::InterfaceProviderSpec(InterfaceProviderSpec&& other) =
    default;
InterfaceProviderSpec::~InterfaceProviderSpec() {}

InterfaceProviderSpec& InterfaceProviderSpec::operator=(
    const InterfaceProviderSpec& other) = default;
InterfaceProviderSpec& InterfaceProviderSpec::operator=(
    InterfaceProviderSpec&& other) = default;

bool InterfaceProviderSpec::operator==(
    const InterfaceProviderSpec& other) const {}

bool InterfaceProviderSpec::operator<(
    const InterfaceProviderSpec& other) const {}

bool GetInterfaceProviderSpec(const std::string& spec_name,
                              const InterfaceProviderSpecMap& map,
                              InterfaceProviderSpec* spec) {}

}  // namespace service_manager