1// Copyright 2013 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 "net/dns/mdns_client.h"
6
7#include "net/dns/mdns_client_impl.h"
8
9namespace net {
10
11// static
12scoped_ptr<MDnsClient> MDnsClient::CreateDefault() {
13  return scoped_ptr<MDnsClient>(
14      new MDnsClientImpl(MDnsConnection::SocketFactory::CreateDefault()));
15}
16
17}  // namespace net
18