Index: net/base/net_util.cc |
=================================================================== |
--- net/base/net_util.cc (revision 128756) |
+++ net/base/net_util.cc (working copy) |
@@ -1907,9 +1907,8 @@ |
bool CanStripTrailingSlash(const GURL& url) { |
// Omit the path only for standard, non-file URLs with nothing but "/" after |
// the hostname. |
- return url.IsStandard() && !url.SchemeIsFile() && |
- !url.SchemeIsFileSystem() && !url.has_query() && !url.has_ref() |
- && url.path() == "/"; |
+ return url.IsStandard() && !url.SchemeIsFile() && !url.has_query() && |
+ !url.has_ref() && url.path() == "/"; |
} |
GURL SimplifyUrlForRequest(const GURL& url) { |