chromium/net/proxy_resolution/pac_file_data.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/pac_file_data.h"

#include "base/check_op.h"
#include "base/strings/utf_string_conversions.h"

namespace net {

// static
scoped_refptr<PacFileData> PacFileData::FromUTF8(const std::string& utf8) {}

// static
scoped_refptr<PacFileData> PacFileData::FromUTF16(const std::u16string& utf16) {}

// static
scoped_refptr<PacFileData> PacFileData::FromURL(const GURL& url) {}

// static
scoped_refptr<PacFileData> PacFileData::ForAutoDetect() {}

const std::u16string& PacFileData::utf16() const {}

const GURL& PacFileData::url() const {}

bool PacFileData::Equals(const PacFileData* other) const {}

PacFileData::PacFileData(Type type,
                         const GURL& url,
                         const std::u16string& utf16)
    :{}

PacFileData::~PacFileData() = default;

}  // namespace net