OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/net/url_fixer_upper.h" | 5 #include "chrome/common/net/url_fixer_upper.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #if defined(OS_POSIX) | 9 #if defined(OS_POSIX) |
10 #include "base/environment.h" | 10 #include "base/environment.h" |
11 #endif | 11 #endif |
12 #include "base/file_util.h" | 12 #include "base/file_util.h" |
13 #include "base/logging.h" | 13 #include "base/logging.h" |
14 #include "base/strings/string_util.h" | 14 #include "base/strings/string_util.h" |
15 #include "base/strings/utf_string_conversions.h" | 15 #include "base/strings/utf_string_conversions.h" |
16 #include "chrome/common/url_constants.h" | 16 #include "chrome/common/url_constants.h" |
17 #include "net/base/escape.h" | 17 #include "net/base/escape.h" |
| 18 #include "net/base/filename_util.h" |
18 #include "net/base/net_util.h" | 19 #include "net/base/net_util.h" |
19 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" | 20 #include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
20 #include "url/url_file.h" | 21 #include "url/url_file.h" |
21 #include "url/url_parse.h" | 22 #include "url/url_parse.h" |
22 #include "url/url_util.h" | 23 #include "url/url_util.h" |
23 | 24 |
24 const char* URLFixerUpper::home_directory_override = NULL; | 25 const char* URLFixerUpper::home_directory_override = NULL; |
25 | 26 |
26 namespace { | 27 namespace { |
27 | 28 |
(...skipping 616 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
644 | 645 |
645 if (part->is_valid()) { | 646 if (part->is_valid()) { |
646 // Offset the location of this component. | 647 // Offset the location of this component. |
647 part->begin += offset; | 648 part->begin += offset; |
648 | 649 |
649 // This part might not have existed in the original text. | 650 // This part might not have existed in the original text. |
650 if (part->begin < 0) | 651 if (part->begin < 0) |
651 part->reset(); | 652 part->reset(); |
652 } | 653 } |
653 } | 654 } |
OLD | NEW |