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

Unified Diff: content/browser/net/view_http_cache_job_factory.cc

Issue 11312016: content: Move two more url constants into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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
« no previous file with comments | « content/browser/browser_url_handler_impl.cc ('k') | content/browser/site_instance_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/net/view_http_cache_job_factory.cc
diff --git a/content/browser/net/view_http_cache_job_factory.cc b/content/browser/net/view_http_cache_job_factory.cc
index 4159f5188520f38769f75c28cb0089d59aed68fb..596a484540cfffe49004dc06a8ee76752efc752c 100644
--- a/content/browser/net/view_http_cache_job_factory.cc
+++ b/content/browser/net/view_http_cache_job_factory.cc
@@ -136,12 +136,12 @@ int ViewHttpCacheJob::Core::Start(const net::URLRequest& request,
AddRef(); // Released on OnIOComplete().
std::string cache_key =
- request.url().spec().substr(strlen(chrome::kChromeUINetworkViewCacheURL));
+ request.url().spec().substr(strlen(kChromeUINetworkViewCacheURL));
int rv;
if (cache_key.empty()) {
rv = cache_helper_.GetContentsHTML(request.context(),
- chrome::kChromeUINetworkViewCacheURL,
+ kChromeUINetworkViewCacheURL,
&data_, callback_);
} else {
rv = cache_helper_.GetEntryInfoHTML(cache_key, request.context(),
« no previous file with comments | « content/browser/browser_url_handler_impl.cc ('k') | content/browser/site_instance_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698