Index: url/third_party/mozilla/url_parse.h |
diff --git a/url/third_party/mozilla/url_parse.h b/url/third_party/mozilla/url_parse.h |
index 5fa9322512632f88f96b8e8061391c2ba01b0561..9d943e571e31612e34aa220f431cd6b514f1bd82 100644 |
--- a/url/third_party/mozilla/url_parse.h |
+++ b/url/third_party/mozilla/url_parse.h |
@@ -238,9 +238,13 @@ URL_EXPORT void ParseStandardURL(const base::char16* url, |
// section but that aren't file URLs either. The scheme is parsed, and |
// everything after the scheme is considered as the path. This is used for |
// things like "about:" and "javascript:" |
-URL_EXPORT void ParsePathURL(const char* url, int url_len, Parsed* parsed); |
+URL_EXPORT void ParsePathURL(const char* url, |
+ int url_len, |
+ bool trim_path_end, |
+ Parsed* parsed); |
URL_EXPORT void ParsePathURL(const base::char16* url, |
int url_len, |
+ bool trim_path_end, |
Parsed* parsed); |
// FileURL is for file URLs. There are some special rules for interpreting |