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

Unified Diff: webkit/appcache/appcache_request_handler.cc

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_request_handler.h ('k') | webkit/appcache/web_application_cache_host_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/appcache/appcache_request_handler.cc
===================================================================
--- webkit/appcache/appcache_request_handler.cc (revision 26501)
+++ webkit/appcache/appcache_request_handler.cc (working copy)
@@ -12,20 +12,18 @@
// AppCacheRequestHandler -----------------------------------------------------
-static bool IsHttpOrHttpsGetOrEquivalent(URLRequest* request) {
- return false; // TODO(michaeln): write me
+AppCacheRequestHandler::AppCacheRequestHandler(AppCacheHost* host,
+ bool is_main_resource)
+ : is_main_request_(is_main_resource), host_(host) {
+ DCHECK(host_);
+ host_->AddObserver(this);
}
-AppCacheRequestHandler::AppCacheRequestHandler(AppCacheHost* host)
- : is_main_request_(true), cache_id_(kNoCacheId),
- host_(host->AsWeakPtr()), service_(host->service()) {
+AppCacheRequestHandler::~AppCacheRequestHandler() {
+ if (host_)
+ host_->RemoveObserver(this);
}
-AppCacheRequestHandler::AppCacheRequestHandler(AppCache* cache)
- : is_main_request_(false), cache_id_(kNoCacheId),
- cache_(cache), service_(cache->service()) {
-}
-
void AppCacheRequestHandler::GetExtraResponseInfo(
int64* cache_id, GURL* manifest_url) {
// TODO(michaeln): If this is a main request and it was retrieved from
@@ -37,7 +35,10 @@
}
URLRequestJob* AppCacheRequestHandler::MaybeLoadResource(URLRequest* request) {
- if (!IsHttpOrHttpsGetOrEquivalent(request))
+ // 6.9.7 Changes to the networking model
+ // If the resource is not to be fetched using the HTTP GET mechanism or
+ // equivalent ... then fetch the resource normally
+ if (!host_ || !IsSchemeAndMethodSupported(request))
return NULL;
// TODO(michaeln): write me
return NULL;
@@ -45,7 +46,7 @@
URLRequestJob* AppCacheRequestHandler::MaybeLoadFallbackForRedirect(
URLRequest* request, const GURL& location) {
- if (!IsHttpOrHttpsGetOrEquivalent(request))
+ if (!host_ || !IsSchemeAndMethodSupported(request))
return NULL;
// TODO(michaeln): write me
return NULL;
@@ -53,11 +54,21 @@
URLRequestJob* AppCacheRequestHandler::MaybeLoadFallbackForResponse(
URLRequest* request) {
- if (!IsHttpOrHttpsGetOrEquivalent(request))
+ if (!host_ || !IsSchemeAndMethodSupported(request))
return NULL;
// TODO(michaeln): write me
return NULL;
}
+void AppCacheRequestHandler::OnCacheSelectionComplete(AppCacheHost* host) {
+ DCHECK(host == host_);
+ // TODO(michaeln): write me
+}
+
+void AppCacheRequestHandler::OnDestructionImminent(AppCacheHost* host) {
+ host_ = NULL;
+ // TODO(michaeln): write me
+}
+
} // namespace appcache
« no previous file with comments | « webkit/appcache/appcache_request_handler.h ('k') | webkit/appcache/web_application_cache_host_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698