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 --- net/proxy/proxy_service.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'net/proxy/proxy_service.h') diff --git a/net/proxy/proxy_service.h b/net/proxy/proxy_service.h index d8d2e6c..da0013f 100644 --- a/net/proxy/proxy_service.h +++ b/net/proxy/proxy_service.h @@ -217,7 +217,7 @@ class ProxyService : public base::RefCountedThreadSafe, STATE_READY, }; - ~ProxyService(); + virtual ~ProxyService(); // Resets all the variables associated with the current proxy configuration, // and rewinds the current state to |STATE_NONE|. Returns the previous value @@ -341,7 +341,7 @@ class SyncProxyServiceHelper private: friend class base::RefCountedThreadSafe; - ~SyncProxyServiceHelper() {} + virtual ~SyncProxyServiceHelper(); void StartAsyncResolve(const GURL& url, const BoundNetLog& net_log); void StartAsyncReconsider(const GURL& url, const BoundNetLog& net_log); -- cgit v1.1