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

Unified Diff: webkit/appcache/appcache_update_job.h

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 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
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);

Powered by Google App Engine
This is Rietveld 408576698