Skip to content

Commit 0dcd6a7

Browse files
committed
Update Chromium patch (104.0.5112.69)
Patch had to be changed because LowerCaseEqualsASCII was removed in: https://chromium.googlesource.com/chromium/src/+/d4cec3aa907370720b6c4d194906c149649371a0
1 parent a62543b commit 0dcd6a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chrome/https-by-default.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ index 43fc0dc783d8..1f7e5ce9dee1 100644
2929
// case we should reject invalid formulations.
3030

3131
+ if (!parts->scheme.is_nonempty() &&
32-
+ base::LowerCaseEqualsASCII(parsed_scheme_utf8, url::kHttpScheme)) {
32+
+ base::EqualsCaseInsensitiveASCII(parsed_scheme_utf8, url::kHttpScheme)) {
3333
+ // Scheme was not specified. url_fixer::FixupURL automatically adds http:,
3434
+ // but we want to default to https instead.
3535
+ if (scheme)

0 commit comments

Comments
 (0)