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

Side by Side Diff: url/url_canon_path.cc

Issue 1544283002: Clean up header files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« no previous file with comments | « ui/views/view_targeter_delegate.cc ('k') | no next file » | 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 #include <limits.h>
6
5 #include "base/logging.h" 7 #include "base/logging.h"
6 #include "url/url_canon.h" 8 #include "url/url_canon.h"
7 #include "url/url_canon_internal.h" 9 #include "url/url_canon_internal.h"
8 #include "url/url_parse_internal.h" 10 #include "url/url_parse_internal.h"
9 11
10 namespace url { 12 namespace url {
11 13
12 namespace { 14 namespace {
13 15
14 enum CharacterFlags { 16 enum CharacterFlags {
(...skipping 411 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 bool CanonicalizePartialPath(const base::char16* spec, 428 bool CanonicalizePartialPath(const base::char16* spec,
427 const Component& path, 429 const Component& path,
428 int path_begin_in_output, 430 int path_begin_in_output,
429 CanonOutput* output) { 431 CanonOutput* output) {
430 return DoPartialPath<base::char16, base::char16>(spec, path, 432 return DoPartialPath<base::char16, base::char16>(spec, path,
431 path_begin_in_output, 433 path_begin_in_output,
432 output); 434 output);
433 } 435 }
434 436
435 } // namespace url 437 } // namespace url
OLDNEW
« no previous file with comments | « ui/views/view_targeter_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698