Chromium Code Reviews| Index: webkit/quota/quota_manager.h |
| diff --git a/webkit/quota/quota_manager.h b/webkit/quota/quota_manager.h |
| index c50124ebf582295828ec8c0881551b5a1d9353e2..ce9c43a0430d0dedbc983e5b5670fa9be74f48b0 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() {} |
|
kinuko
2011/05/25 06:31:38
You may want to give your answer why this needs to
Dai Mikurube (NOT FULLTIME)
2011/05/25 07:20:37
Ah, I moved that because of error when mocking thi
|
| + |
| 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 |