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

Unified Diff: webkit/quota/quota_manager.h

Issue 7002024: Implement QuotaTemporaryStorageEvictor. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebased and nit fix. Created 9 years, 7 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/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

Powered by Google App Engine
This is Rietveld 408576698