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..b26b2b0177dcce4bc9699d783dc540b9c7c18d13 100644 |
--- a/chrome/browser/chromeos/attestation/platform_verification_flow.cc |
+++ b/chrome/browser/chromeos/attestation/platform_verification_flow.cc |
@@ -32,6 +32,7 @@ |
#include "content/public/browser/web_contents.h" |
#include "content/public/common/url_constants.h" |
#include "net/cert/x509_certificate.h" |
+#include "url/url_constants.h" |
namespace { |
@@ -445,9 +446,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()) { |