aboutsummaryrefslogtreecommitdiff
path: root/osp/impl/mdns_service_publisher_factory.cc
diff options
context:
space:
mode:
Diffstat (limited to 'osp/impl/mdns_service_publisher_factory.cc')
-rw-r--r--osp/impl/mdns_service_publisher_factory.cc24
1 files changed, 0 insertions, 24 deletions
diff --git a/osp/impl/mdns_service_publisher_factory.cc b/osp/impl/mdns_service_publisher_factory.cc
deleted file mode 100644
index f055e772..00000000
--- a/osp/impl/mdns_service_publisher_factory.cc
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2018 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "osp/public/mdns_service_publisher_factory.h"
-
-#include "osp/impl/internal_services.h"
-
-namespace openscreen {
-
-class TaskRunner;
-
-namespace osp {
-
-// static
-std::unique_ptr<ServicePublisher> MdnsServicePublisherFactory::Create(
- const ServicePublisher::Config& config,
- ServicePublisher::Observer* observer,
- TaskRunner* task_runner) {
- return InternalServices::CreatePublisher(config, observer, task_runner);
-}
-
-} // namespace osp
-} // namespace openscreen