| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_GURL_H_ | 5 #ifndef URL_GURL_H_ |
| 6 #define URL_GURL_H_ | 6 #define URL_GURL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <iosfwd> | 10 #include <iosfwd> |
| 9 #include <string> | 11 #include <string> |
| 10 | 12 |
| 11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 13 #include "base/strings/string_piece.h" | 15 #include "base/strings/string_piece.h" |
| 14 #include "url/third_party/mozilla/url_parse.h" | 16 #include "url/third_party/mozilla/url_parse.h" |
| 15 #include "url/url_canon.h" | 17 #include "url/url_canon.h" |
| 16 #include "url/url_canon_stdstring.h" | 18 #include "url/url_canon_stdstring.h" |
| 17 #include "url/url_constants.h" | 19 #include "url/url_constants.h" |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 431 url::Parsed parsed_; | 433 url::Parsed parsed_; |
| 432 | 434 |
| 433 // Used for nested schemes [currently only filesystem:]. | 435 // Used for nested schemes [currently only filesystem:]. |
| 434 scoped_ptr<GURL> inner_url_; | 436 scoped_ptr<GURL> inner_url_; |
| 435 }; | 437 }; |
| 436 | 438 |
| 437 // Stream operator so GURL can be used in assertion statements. | 439 // Stream operator so GURL can be used in assertion statements. |
| 438 URL_EXPORT std::ostream& operator<<(std::ostream& out, const GURL& url); | 440 URL_EXPORT std::ostream& operator<<(std::ostream& out, const GURL& url); |
| 439 | 441 |
| 440 #endif // URL_GURL_H_ | 442 #endif // URL_GURL_H_ |
| OLD | NEW |