// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <stddef.h> #include "chrome/browser/local_discovery/service_discovery_client.h" namespace local_discovery { ServiceDescription::ServiceDescription() { … } ServiceDescription::ServiceDescription(const ServiceDescription& other) = default; ServiceDescription::~ServiceDescription() { … } std::string ServiceDescription::instance_name() const { … } std::string ServiceDescription::service_type() const { … } } // namespace local_discovery