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

Unified Diff: net/base/net_util.cc

Issue 63011: Monster FilePath patch! (Closed)
Patch Set: sync with trunk Created 11 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/base/net_util.h ('k') | net/base/net_util_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
« no previous file with comments | « net/base/net_util.h ('k') | net/base/net_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698