| Index: content/child/site_isolation_policy.cc
|
| diff --git a/content/child/site_isolation_policy.cc b/content/child/site_isolation_policy.cc
|
| index 9b982b626cca90bcebe4cb33e8c369b873ada7f9..87ac9cc849c2e10099542b80c73062786377e99e 100644
|
| --- a/content/child/site_isolation_policy.cc
|
| +++ b/content/child/site_isolation_policy.cc
|
| @@ -333,7 +333,7 @@ bool SiteIsolationPolicy::IsBlockableScheme(const GURL& url) {
|
| // We exclude ftp:// from here. FTP doesn't provide a Content-Type
|
| // header which our policy depends on, so we cannot protect any
|
| // document from FTP servers.
|
| - return url.SchemeIs("http") || url.SchemeIs("https");
|
| + return url.SchemeIs(url::kHttpScheme) || url.SchemeIs(url::kHttpsScheme);
|
| }
|
|
|
| bool SiteIsolationPolicy::IsSameSite(const GURL& frame_origin,
|
|
|