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

Unified Diff: chrome/browser/renderer_host/offline_resource_throttle.h

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 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/renderer_host/offline_resource_throttle.h
diff --git a/chrome/browser/renderer_host/offline_resource_throttle.h b/chrome/browser/renderer_host/offline_resource_throttle.h
index a78fadc08be4d7089ccabdf82218e984bab569c4..bc8cfd6eb02b91612dd597f8b4a4e97e690012c0 100644
--- a/chrome/browser/renderer_host/offline_resource_throttle.h
+++ b/chrome/browser/renderer_host/offline_resource_throttle.h
@@ -13,7 +13,7 @@
#include "content/public/browser/resource_throttle.h"
#include "net/base/completion_callback.h"
-namespace appcache {
+namespace content {
class AppCacheService;
}
@@ -26,7 +26,7 @@ class OfflineResourceThrottle
public base::SupportsWeakPtr<OfflineResourceThrottle> {
public:
OfflineResourceThrottle(net::URLRequest* request,
- appcache::AppCacheService* appcache_service);
+ content::AppCacheService* appcache_service);
virtual ~OfflineResourceThrottle();
// content::ResourceThrottle implementation:
@@ -49,7 +49,7 @@ class OfflineResourceThrottle
net::URLRequest* request_;
// Safe to keep a pointer around since AppCacheService outlives all requests.
- appcache::AppCacheService* appcache_service_;
+ content::AppCacheService* appcache_service_;
net::CancelableCompletionCallback appcache_completion_callback_;
DISALLOW_COPY_AND_ASSIGN(OfflineResourceThrottle);

Powered by Google App Engine
This is Rietveld 408576698