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

Side by Side Diff: url/url_canon_path.cc

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 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 #include <limits.h> 5 #include <limits.h>
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/strings/string16.h"
9 #include "url/third_party/mozilla/url_parse.h"
8 #include "url/url_canon.h" 10 #include "url/url_canon.h"
9 #include "url/url_canon_internal.h" 11 #include "url/url_canon_internal.h"
10 #include "url/url_parse_internal.h" 12 #include "url/url_parse_internal.h"
11 13
12 namespace url { 14 namespace url {
13 15
14 namespace { 16 namespace {
15 17
16 enum CharacterFlags { 18 enum CharacterFlags {
17 // Pass through unchanged, whether escaped or unescaped. This doesn't 19 // Pass through unchanged, whether escaped or unescaped. This doesn't
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
428 bool CanonicalizePartialPath(const base::char16* spec, 430 bool CanonicalizePartialPath(const base::char16* spec,
429 const Component& path, 431 const Component& path,
430 int path_begin_in_output, 432 int path_begin_in_output,
431 CanonOutput* output) { 433 CanonOutput* output) {
432 return DoPartialPath<base::char16, base::char16>(spec, path, 434 return DoPartialPath<base::char16, base::char16>(spec, path,
433 path_begin_in_output, 435 path_begin_in_output,
434 output); 436 output);
435 } 437 }
436 438
437 } // namespace url 439 } // namespace url
OLDNEW
« url/url_canon_icu.cc ('K') | « url/url_canon_mailtourl.cc ('k') | url/url_canon_pathurl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698