#include "net/proxy_resolution/pac_file_data.h"
#include "base/check_op.h"
#include "base/strings/utf_string_conversions.h"
namespace net {
scoped_refptr<PacFileData> PacFileData::FromUTF8(const std::string& utf8) { … }
scoped_refptr<PacFileData> PacFileData::FromUTF16(const std::u16string& utf16) { … }
scoped_refptr<PacFileData> PacFileData::FromURL(const GURL& url) { … }
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;
}