diff options
Diffstat (limited to 'webkit/appcache/appcache_url_request_job.h')
-rw-r--r-- | webkit/appcache/appcache_url_request_job.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/appcache/appcache_url_request_job.h b/webkit/appcache/appcache_url_request_job.h index 25b0cf6..2e11abc 100644 --- a/webkit/appcache/appcache_url_request_job.h +++ b/webkit/appcache/appcache_url_request_job.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -23,7 +23,6 @@ class APPCACHE_EXPORT AppCacheURLRequestJob : public net::URLRequestJob, public AppCacheStorage::Delegate { public: AppCacheURLRequestJob(net::URLRequest* request, AppCacheStorage* storage); - virtual ~AppCacheURLRequestJob(); // Informs the job of what response it should deliver. Only one of these // methods should be called, and only once per job. A job will sit idle and @@ -77,6 +76,9 @@ class APPCACHE_EXPORT AppCacheURLRequestJob : public net::URLRequestJob, return cache_entry_not_found_; } + protected: + virtual ~AppCacheURLRequestJob(); + private: friend class AppCacheRequestHandlerTest; friend class AppCacheURLRequestJobTest; |