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

Side by Side Diff: content/browser/net/view_http_cache_job_factory.cc

Issue 13513004: content: Move more constants into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/browser/net/view_http_cache_job_factory.h" 5 #include "content/browser/net/view_http_cache_job_factory.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // We may be holding the last reference to this job. Do not access |this| 186 // We may be holding the last reference to this job. Do not access |this|
187 // after Release(). 187 // after Release().
188 Release(); // Acquired on Start(). 188 Release(); // Acquired on Start().
189 } 189 }
190 190
191 } // namespace. 191 } // namespace.
192 192
193 // Static. 193 // Static.
194 bool ViewHttpCacheJobFactory::IsSupportedURL(const GURL& url) { 194 bool ViewHttpCacheJobFactory::IsSupportedURL(const GURL& url) {
195 return url.SchemeIs(chrome::kChromeUIScheme) && 195 return url.SchemeIs(chrome::kChromeUIScheme) &&
196 url.host() == chrome::kChromeUINetworkViewCacheHost; 196 url.host() == kChromeUINetworkViewCacheHost;
197 } 197 }
198 198
199 // Static. 199 // Static.
200 net::URLRequestJob* ViewHttpCacheJobFactory::CreateJobForRequest( 200 net::URLRequestJob* ViewHttpCacheJobFactory::CreateJobForRequest(
201 net::URLRequest* request, net::NetworkDelegate* network_delegate) { 201 net::URLRequest* request, net::NetworkDelegate* network_delegate) {
202 return new ViewHttpCacheJob(request, network_delegate); 202 return new ViewHttpCacheJob(request, network_delegate);
203 } 203 }
204 204
205 } // namespace content 205 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/net/view_blob_internals_job_factory.cc ('k') | content/browser/tracing/tracing_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698