Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: url/origin.h

Issue 2067933002: Use correct origin when prompting for proxy authentication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef URL_ORIGIN_H_ 5 #ifndef URL_ORIGIN_H_
6 #define URL_ORIGIN_H_ 6 #define URL_ORIGIN_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 // An ASCII serialization of the Origin as per Section 6.2 of RFC 6454, with 114 // An ASCII serialization of the Origin as per Section 6.2 of RFC 6454, with
115 // the addition that all Origins with a 'file' scheme serialize to "file://". 115 // the addition that all Origins with a 'file' scheme serialize to "file://".
116 std::string Serialize() const; 116 std::string Serialize() const;
117 117
118 // Two Origins are "same-origin" if their schemes, hosts, and ports are exact 118 // Two Origins are "same-origin" if their schemes, hosts, and ports are exact
119 // matches; and neither is unique. 119 // matches; and neither is unique.
120 bool IsSameOriginWith(const Origin& other) const; 120 bool IsSameOriginWith(const Origin& other) const;
121 bool operator==(const Origin& other) const { 121 bool operator==(const Origin& other) const {
122 return IsSameOriginWith(other); 122 return IsSameOriginWith(other);
123 } 123 }
124 bool operator!=(const Origin& other) const { return !(*this == other); }
124 125
125 // Allows Origin to be used as a key in STL (for example, a std::set or 126 // Allows Origin to be used as a key in STL (for example, a std::set or
126 // std::map). 127 // std::map).
127 bool operator<(const Origin& other) const; 128 bool operator<(const Origin& other) const;
128 129
129 private: 130 private:
130 Origin(base::StringPiece scheme, base::StringPiece host, uint16_t port); 131 Origin(base::StringPiece scheme, base::StringPiece host, uint16_t port);
131 132
132 SchemeHostPort tuple_; 133 SchemeHostPort tuple_;
133 bool unique_; 134 bool unique_;
134 }; 135 };
135 136
136 URL_EXPORT std::ostream& operator<<(std::ostream& out, const Origin& origin); 137 URL_EXPORT std::ostream& operator<<(std::ostream& out, const Origin& origin);
137 138
138 URL_EXPORT bool IsSameOriginWith(const GURL& a, const GURL& b); 139 URL_EXPORT bool IsSameOriginWith(const GURL& a, const GURL& b);
139 140
140 } // namespace url 141 } // namespace url
141 142
142 #endif // URL_ORIGIN_H_ 143 #endif // URL_ORIGIN_H_
OLDNEW
« chrome/browser/ui/login/login_handler_unittest.cc ('K') | « net/url_request/url_request_ftp_job.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698