Index: android_webview/native/aw_quota_manager_bridge_impl.cc |
diff --git a/android_webview/native/aw_quota_manager_bridge_impl.cc b/android_webview/native/aw_quota_manager_bridge_impl.cc |
index 549352fcd490f2cee1601708ad1d54f221183db9..1e7877167f4b2f280c336951bd9bef030181ac6c 100644 |
--- a/android_webview/native/aw_quota_manager_bridge_impl.cc |
+++ b/android_webview/native/aw_quota_manager_bridge_impl.cc |
@@ -207,14 +207,16 @@ void AwQuotaManagerBridgeImpl::DeleteAllData(JNIEnv* env, jobject object) { |
void AwQuotaManagerBridgeImpl::DeleteAllDataOnUiThread() { |
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- GetStoragePartition()->ClearDataForUnboundedRange( |
+ GetStoragePartition()->ClearData( |
// Clear all web storage data except cookies. |
StoragePartition::REMOVE_DATA_MASK_APPCACHE | |
StoragePartition::REMOVE_DATA_MASK_FILE_SYSTEMS | |
StoragePartition::REMOVE_DATA_MASK_INDEXEDDB | |
StoragePartition::REMOVE_DATA_MASK_LOCAL_STORAGE | |
StoragePartition::REMOVE_DATA_MASK_WEBSQL, |
- StoragePartition::QUOTA_MANAGED_STORAGE_MASK_TEMPORARY); |
+ StoragePartition::QUOTA_MANAGED_STORAGE_MASK_TEMPORARY, |
+ NULL, StoragePartition::OriginMatcherFunction(), |
+ base::Time(), base::Time::Max(), base::Bind(&base::DoNothing)); |
} |
void AwQuotaManagerBridgeImpl::DeleteOrigin( |