Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1062)

Unified Diff: chrome/browser/content_settings/local_shared_objects_container.cc

Issue 23658056: content: Move kHttpScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 d4a996dcb9eadc3034588d1d5d3694c5d7571c41..da98b1b0aa11ceaa4665e51d272a727cedb2909c 100644
--- a/chrome/browser/content_settings/local_shared_objects_container.cc
+++ b/chrome/browser/content_settings/local_shared_objects_container.cc
@@ -98,7 +98,7 @@ size_t LocalSharedObjectsContainer::GetObjectCountForDomain(
// The |domain_url| is only created in order to use the
// SamePublicDomainOrHost method below. It does not matter which scheme is
// used as the scheme is ignored by the SamePublicDomainOrHost method.
- GURL domain_url(std::string(chrome::kHttpScheme) +
+ GURL domain_url(std::string(content::kHttpScheme) +
content::kStandardSchemeSeparator + cookie_domain);
if (SamePublicDomainOrHost(origin, domain_url))
++count;

Powered by Google App Engine
This is Rietveld 408576698