OLD | NEW |
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 #include <iosfwd> |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
13 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
14 #include "url/scheme_host_port.h" | 14 #include "url/scheme_host_port.h" |
15 #include "url/third_party/mozilla/url_parse.h" | 15 #include "url/third_party/mozilla/url_parse.h" |
16 #include "url/url_canon.h" | 16 #include "url/url_canon.h" |
17 #include "url/url_constants.h" | 17 #include "url/url_constants.h" |
18 #include "url/url_export.h" | 18 #include "url/url_export.h" |
19 | 19 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
129 SchemeHostPort tuple_; | 129 SchemeHostPort tuple_; |
130 bool unique_; | 130 bool unique_; |
131 }; | 131 }; |
132 | 132 |
133 URL_EXPORT std::ostream& operator<<(std::ostream& out, | 133 URL_EXPORT std::ostream& operator<<(std::ostream& out, |
134 const Origin& origin); | 134 const Origin& origin); |
135 | 135 |
136 } // namespace url | 136 } // namespace url |
137 | 137 |
138 #endif // URL_ORIGIN_H_ | 138 #endif // URL_ORIGIN_H_ |
OLD | NEW |