| Index: webkit/quota/quota_manager.cc
|
| diff --git a/webkit/quota/quota_manager.cc b/webkit/quota/quota_manager.cc
|
| index 7da4480e9ddaef01721f879ecac28e5023eaec40..7e5be19221c00aed36e3d44342429bf1e33fab3b 100644
|
| --- a/webkit/quota/quota_manager.cc
|
| +++ b/webkit/quota/quota_manager.cc
|
| @@ -680,6 +680,18 @@ void QuotaManager::GetLRUOrigin(
|
| }
|
| }
|
|
|
| +void QuotaManager::GetUsageAndQuotaForEviction(
|
| + DeleteOriginDataCallback* callback) {
|
| + // TODO(dmikurube): Implement it.
|
| +}
|
| +
|
| +void QuotaManager::DeleteOriginData(
|
| + const GURL& origin,
|
| + StorageType type,
|
| + DeleteOriginDataCallback* callback) {
|
| + // TODO(dmikurube): Implement it.
|
| +}
|
| +
|
| UsageTracker* QuotaManager::GetUsageTracker(StorageType type) const {
|
| switch (type) {
|
| case kStorageTypeTemporary:
|
|
|