From 20f0487a5b73e8071af2612150301b0942cbf0e2 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Thu, 30 Sep 2010 20:06:30 +0000 Subject: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. Cuts ~2MB off our .a files (Debug, Linux). Also added the "virtual" keyword on a whole bunch of virtual dtors that were missing it. BUG=none TEST=compiles Review URL: http://codereview.chromium.org/3522004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61100 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/appcache/appcache_service.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'webkit/appcache/appcache_service.h') diff --git a/webkit/appcache/appcache_service.h b/webkit/appcache/appcache_service.h index fe5ec60..ebd8fb7 100644 --- a/webkit/appcache/appcache_service.h +++ b/webkit/appcache/appcache_service.h @@ -32,7 +32,9 @@ class AppCachePolicy; // Refcounted container to avoid copying the collection in callbacks. struct AppCacheInfoCollection : public base::RefCountedThreadSafe { - virtual ~AppCacheInfoCollection() {} + AppCacheInfoCollection(); + virtual ~AppCacheInfoCollection(); + std::map infos_by_origin; }; -- cgit v1.1