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 1561693003: IWYU fixes for url/... Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added IWYU-pragma-keep in a few places. Created 4 years, 11 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 #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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698