| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_URL_FIXER_UPPER_H__ | 5 #ifndef CHROME_BROWSER_URL_FIXER_UPPER_H__ |
| 6 #define CHROME_BROWSER_URL_FIXER_UPPER_H__ | 6 #define CHROME_BROWSER_URL_FIXER_UPPER_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "googleurl/src/url_parse.h" | 10 #include "googleurl/src/url_parse.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 // | 45 // |
| 46 // For "regular" input, even if it is possibly a file with a full path, you | 46 // For "regular" input, even if it is possibly a file with a full path, you |
| 47 // should use FixupURL() directly. This function should only be used when | 47 // should use FixupURL() directly. This function should only be used when |
| 48 // relative path handling is desired, as for command line processing. | 48 // relative path handling is desired, as for command line processing. |
| 49 std::wstring FixupRelativeFile(const std::wstring& base_dir, | 49 std::wstring FixupRelativeFile(const std::wstring& base_dir, |
| 50 const std::wstring& text); | 50 const std::wstring& text); |
| 51 }; | 51 }; |
| 52 | 52 |
| 53 #endif // #ifndef CHROME_BROWSER_URL_FIXER_UPPER_H__ | 53 #endif // #ifndef CHROME_BROWSER_URL_FIXER_UPPER_H__ |
| 54 | 54 |
| OLD | NEW |