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

Unified Diff: webkit/appcache/appcache_request_handler.h

Issue 205017: Check for supported schemes and methods. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
« no previous file with comments | « webkit/appcache/appcache_interfaces.cc ('k') | webkit/appcache/appcache_request_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_request_handler.h
===================================================================
--- webkit/appcache/appcache_request_handler.h (revision 26501)
+++ webkit/appcache/appcache_request_handler.h (working copy)
@@ -18,8 +18,11 @@
// given the opportunity to hijack the request along the way. Callers
// should use AppCacheHost::CreateRequestHandler to manufacture instances
// that can retrieve resources for a particular host.
-class AppCacheRequestHandler : public URLRequest::UserData {
+class AppCacheRequestHandler : public URLRequest::UserData,
+ public AppCacheHost::Observer {
public:
+ virtual ~AppCacheRequestHandler();
+
// Should be called on each request intercept opportunity.
URLRequestJob* MaybeLoadResource(URLRequest* request);
URLRequestJob* MaybeLoadFallbackForRedirect(URLRequest* request,
@@ -31,20 +34,19 @@
private:
friend class AppCacheHost;
- // Ctor for main resource loads.
- explicit AppCacheRequestHandler(AppCacheHost* host);
+ // Callers should use AppCacheHost::CreateRequestHandler.
+ AppCacheRequestHandler(AppCacheHost* host, bool is_main_resource);
- // Ctor for subresource loads when the cache is loaded.
- explicit AppCacheRequestHandler(AppCache* cache);
+ // AppCacheHost::Observer methods
+ virtual void OnCacheSelectionComplete(AppCacheHost* host);
+ virtual void OnDestructionImminent(AppCacheHost* host);
// Main vs subresource loads are very different.
// TODO(michaeln): maybe have two derived classes?
bool is_main_request_;
- int64 cache_id_;
+ AppCacheHost* host_;
scoped_refptr<AppCache> cache_;
- base::WeakPtr<AppCacheHost> host_;
scoped_refptr<URLRequestJob> job_;
- AppCacheService* service_;
};
} // namespace appcache
« no previous file with comments | « webkit/appcache/appcache_interfaces.cc ('k') | webkit/appcache/appcache_request_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698