| Index: webkit/appcache/appcache_update_job.cc
|
| diff --git a/webkit/appcache/appcache_update_job.cc b/webkit/appcache/appcache_update_job.cc
|
| index 5433e550833c75c3b9a78f7663dd9ace8a1a61d8..7d48a3af16cb92628f62a454e635d03f0767a151 100644
|
| --- a/webkit/appcache/appcache_update_job.cc
|
| +++ b/webkit/appcache/appcache_update_job.cc
|
| @@ -123,6 +123,17 @@ class HostNotifier {
|
| NotifyHostMap hosts_to_notify;
|
| };
|
|
|
| +AppCacheUpdateJob::UrlToFetch::UrlToFetch(const GURL& url,
|
| + bool checked,
|
| + AppCacheResponseInfo* info)
|
| + : url(url),
|
| + storage_checked(checked),
|
| + existing_response_info(info) {
|
| +}
|
| +
|
| +AppCacheUpdateJob::UrlToFetch::~UrlToFetch() {
|
| +}
|
| +
|
| AppCacheUpdateJob::AppCacheUpdateJob(AppCacheService* service,
|
| AppCacheGroup* group)
|
| : ALLOW_THIS_IN_INITIALIZER_LIST(method_factory_(this)),
|
|
|