| Index: chrome/browser/chromeos/attestation/platform_verification_flow.cc
|
| diff --git a/chrome/browser/chromeos/attestation/platform_verification_flow.cc b/chrome/browser/chromeos/attestation/platform_verification_flow.cc
|
| index 1c31f9161071a616b87e738e2db420bd5fd039fd..0adda1276f450120fbac7e094f649349bf9952c4 100644
|
| --- a/chrome/browser/chromeos/attestation/platform_verification_flow.cc
|
| +++ b/chrome/browser/chromeos/attestation/platform_verification_flow.cc
|
| @@ -445,9 +445,9 @@ void PlatformVerificationFlow::RecordDomainConsent(
|
| ->WithPathWildcard();
|
| if (!url.port().empty())
|
| builder->WithPort(url.port());
|
| - else if (url.SchemeIs(content::kHttpsScheme))
|
| + else if (url.SchemeIs(url::kHttpsScheme))
|
| builder->WithPort(kDefaultHttpsPort);
|
| - else if (url.SchemeIs(content::kHttpScheme))
|
| + else if (url.SchemeIs(url::kHttpScheme))
|
| builder->WithPortWildcard();
|
| ContentSettingsPattern pattern = builder->Build();
|
| if (pattern.IsValid()) {
|
|
|