chromium/net/proxy_resolution/dhcp_pac_file_fetcher.cc

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

#include "net/proxy_resolution/dhcp_pac_file_fetcher.h"

#include "net/base/net_errors.h"

namespace net {

std::string DhcpPacFileFetcher::GetFetcherName() const {}

DhcpPacFileFetcher::DhcpPacFileFetcher() = default;

DhcpPacFileFetcher::~DhcpPacFileFetcher() = default;

DoNothingDhcpPacFileFetcher::DoNothingDhcpPacFileFetcher() = default;

DoNothingDhcpPacFileFetcher::~DoNothingDhcpPacFileFetcher() = default;

int DoNothingDhcpPacFileFetcher::Fetch(
    std::u16string* utf16_text,
    CompletionOnceCallback callback,
    const NetLogWithSource& net_log,
    const NetworkTrafficAnnotationTag traffic_annotation) {}

void DoNothingDhcpPacFileFetcher::Cancel() {}

void DoNothingDhcpPacFileFetcher::OnShutdown() {}

const GURL& DoNothingDhcpPacFileFetcher::GetPacURL() const {}

std::string DoNothingDhcpPacFileFetcher::GetFetcherName() const {}

}  // namespace net