Chromium Code Reviews| Index: webkit/quota/quota_manager.h |
| diff --git a/webkit/quota/quota_manager.h b/webkit/quota/quota_manager.h |
| index 9df546389c467dd8d17cf2c230d49612ede246ce..c7df460f52f0ac988d2d6390abd276136c2f4003 100644 |
| --- a/webkit/quota/quota_manager.h |
| +++ b/webkit/quota/quota_manager.h |
| @@ -37,6 +37,8 @@ class QuotaManagerProxy; |
| // An interface called by QuotaTemporaryStorageEvictor. |
| class QuotaEvictionHandler { |
| public: |
| + virtual ~QuotaEvictionHandler() {} |
|
michaeln
2011/05/23 19:53:47
Does this need to be in the public interface?
|
| + |
| typedef Callback1<const GURL&>::Type GetLRUOriginCallback; |
| typedef Callback1<QuotaStatusCode>::Type EvictOriginDataCallback; |
| typedef Callback4<QuotaStatusCode, |
| @@ -58,9 +60,6 @@ class QuotaEvictionHandler { |
| virtual void GetUsageAndQuotaForEviction( |
| GetUsageAndQuotaForEvictionCallback* callback) = 0; |
| - |
| - protected: |
| - virtual ~QuotaEvictionHandler() {} |
| }; |
| // The quota manager class. This class is instantiated per profile and |