| Index: net/base/net_util.cc
|
| diff --git a/net/base/net_util.cc b/net/base/net_util.cc
|
| index 7865b4e04b9ebe1d4f062509ccee787400373ac0..9610e4015d71f21de68ae2c2d6dd00232202f47c 100644
|
| --- a/net/base/net_util.cc
|
| +++ b/net/base/net_util.cc
|
| @@ -673,10 +673,6 @@ GURL FilePathToFileURL(const FilePath& path) {
|
| return GURL(url_string);
|
| }
|
|
|
| -GURL FilePathToFileURL(const std::wstring& path_str) {
|
| - return FilePathToFileURL(FilePath::FromWStringHack(path_str));
|
| -}
|
| -
|
| std::wstring GetSpecificHeader(const std::wstring& headers,
|
| const std::wstring& name) {
|
| return GetSpecificHeaderT(headers, name);
|
| @@ -945,14 +941,6 @@ int SetNonBlocking(int fd) {
|
| #endif
|
| }
|
|
|
| -// Deprecated.
|
| -bool FileURLToFilePath(const GURL& gurl, std::wstring* file_path) {
|
| - FilePath path;
|
| - bool rv = FileURLToFilePath(gurl, &path);
|
| - *file_path = path.ToWStringHack();
|
| - return rv;
|
| -}
|
| -
|
| bool GetHostAndPort(std::string::const_iterator host_and_port_begin,
|
| std::string::const_iterator host_and_port_end,
|
| std::string* host,
|
|
|