| Index: webkit/appcache/appcache_update_job.h
|
| diff --git a/webkit/appcache/appcache_update_job.h b/webkit/appcache/appcache_update_job.h
|
| index 9d82e683010808f6b43153c700f38e891b490584..b0a683cf353b8c7be69b650a74e8898a8d834cd0 100644
|
| --- a/webkit/appcache/appcache_update_job.h
|
| +++ b/webkit/appcache/appcache_update_job.h
|
| @@ -83,11 +83,12 @@ class AppCacheUpdateJob : public URLRequest::Delegate,
|
| };
|
|
|
| struct UrlToFetch {
|
| + UrlToFetch(const GURL& url, bool checked, AppCacheResponseInfo* info);
|
| + ~UrlToFetch();
|
| +
|
| GURL url;
|
| bool storage_checked;
|
| scoped_refptr<AppCacheResponseInfo> existing_response_info;
|
| - UrlToFetch(const GURL& url, bool checked, AppCacheResponseInfo* info)
|
| - : url(url), storage_checked(checked), existing_response_info(info) {}
|
| };
|
|
|
| UpdateJobInfo* GetUpdateJobInfo(URLRequest* request);
|
|
|