forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpac_file_data.cc
65 lines (50 loc) · 1.69 KB
/
pac_file_data.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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/logging.h"
#include "base/strings/utf_string_conversions.h"
namespace net {
// static
scoped_refptr<PacFileData> PacFileData::FromUTF8(const std::string& utf8) {
return new PacFileData(TYPE_SCRIPT_CONTENTS, GURL(), base::UTF8ToUTF16(utf8));
}
// static
scoped_refptr<PacFileData> PacFileData::FromUTF16(const base::string16& utf16) {
return new PacFileData(TYPE_SCRIPT_CONTENTS, GURL(), utf16);
}
// static
scoped_refptr<PacFileData> PacFileData::FromURL(const GURL& url) {
return new PacFileData(TYPE_SCRIPT_URL, url, base::string16());
}
// static
scoped_refptr<PacFileData> PacFileData::ForAutoDetect() {
return new PacFileData(TYPE_AUTO_DETECT, GURL(), base::string16());
}
const base::string16& PacFileData::utf16() const {
DCHECK_EQ(TYPE_SCRIPT_CONTENTS, type_);
return utf16_;
}
const GURL& PacFileData::url() const {
DCHECK_EQ(TYPE_SCRIPT_URL, type_);
return url_;
}
bool PacFileData::Equals(const PacFileData* other) const {
if (type() != other->type())
return false;
switch (type()) {
case TYPE_SCRIPT_CONTENTS:
return utf16() == other->utf16();
case TYPE_SCRIPT_URL:
return url() == other->url();
case TYPE_AUTO_DETECT:
return true;
}
return false; // Shouldn't be reached.
}
PacFileData::PacFileData(Type type,
const GURL& url,
const base::string16& utf16)
: type_(type), url_(url), utf16_(utf16) {}
PacFileData::~PacFileData() = default;
} // namespace net