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

Side by Side Diff: url/gurl.h

Issue 1542703002: Switch to standard integer types in url/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
« no previous file with comments | « no previous file | url/gurl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « no previous file | url/gurl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698