blob: 1673b6d5411d6921b8e30c6e23d504dc99eabc93 [file] [log] [blame]
Sergey Ulanov4593ec92019-04-09 02:06:441// Copyright 2019 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/dns_config_service_fuchsia.h"
6
7#include <memory>
8
9#include "net/dns/dns_config.h"
10#include "net/dns/dns_hosts.h"
11
12namespace net {
13namespace internal {
14
15DnsConfigServiceFuchsia::DnsConfigServiceFuchsia() = default;
16DnsConfigServiceFuchsia::~DnsConfigServiceFuchsia() = default;
17
18void DnsConfigServiceFuchsia::ReadNow() {
19 // TODO(crbug.com/950717): Implement this method.
Sergey Ulanov4593ec92019-04-09 02:06:4420}
21
22bool DnsConfigServiceFuchsia::StartWatching() {
23 // TODO(crbug.com/950717): Implement this method.
24 return false;
25}
26
27} // namespace internal
28
29// static
30std::unique_ptr<DnsConfigService> DnsConfigService::CreateSystemService() {
31 return std::make_unique<internal::DnsConfigServiceFuchsia>();
32}
33
Bence Békyb7bf2ad2019-04-22 14:16:0134} // namespace net