| Index: webkit/quota/quota_types.h
|
| diff --git a/webkit/quota/quota_types.h b/webkit/quota/quota_types.h
|
| index 5056c54cb6b1197f0cb4d12516f5ee35c7fc79ba..97de985086722d7f3a0d477c2f764d8b53f77a9c 100644
|
| --- a/webkit/quota/quota_types.h
|
| +++ b/webkit/quota/quota_types.h
|
| @@ -37,8 +37,7 @@ struct UsageInfo;
|
| typedef std::vector<UsageInfo> UsageInfoEntries;
|
|
|
| // Common callback types that are used throughout in the quota module.
|
| -typedef base::Callback<void(StorageType status,
|
| - int64 usage,
|
| +typedef base::Callback<void(int64 usage,
|
| int64 unlimited_usage)> GlobalUsageCallback;
|
| typedef base::Callback<void(QuotaStatusCode status, int64 quota)> QuotaCallback;
|
| typedef base::Callback<void(int64 usage)> UsageCallback;
|
| @@ -82,7 +81,7 @@ class CallbackQueue {
|
| };
|
|
|
| typedef CallbackQueue<GlobalUsageCallback,
|
| - Tuple3<StorageType, int64, int64> >
|
| + Tuple2<int64, int64> >
|
| GlobalUsageCallbackQueue;
|
| typedef CallbackQueue<AvailableSpaceCallback,
|
| Tuple2<QuotaStatusCode, int64> >
|
|
|