Index: chrome/browser/content_settings/local_shared_objects_container.cc |
diff --git a/chrome/browser/content_settings/local_shared_objects_container.cc b/chrome/browser/content_settings/local_shared_objects_container.cc |
index 4cc1fa1afb7b5dd975e8cee464c6e572b4b705ea..ec051372767ad11663635c07eb8ce8b898c9f3ee 100644 |
--- a/chrome/browser/content_settings/local_shared_objects_container.cc |
+++ b/chrome/browser/content_settings/local_shared_objects_container.cc |
@@ -18,6 +18,7 @@ |
#include "net/base/registry_controlled_domains/registry_controlled_domain.h" |
#include "net/cookies/canonical_cookie.h" |
#include "url/gurl.h" |
+#include "url/url_constants.h" |
namespace { |
@@ -99,7 +100,7 @@ size_t LocalSharedObjectsContainer::GetObjectCountForDomain( |
// The |domain_url| is only created in order to use the |
// SameDomainOrHost method below. It does not matter which scheme is |
// used as the scheme is ignored by the SameDomainOrHost method. |
- GURL domain_url(std::string(content::kHttpScheme) + |
+ GURL domain_url(std::string(url::kHttpScheme) + |
content::kStandardSchemeSeparator + cookie_domain); |
if (SameDomainOrHost(origin, domain_url)) |
++count; |