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 e9cb8ac4b05416459086341852a13e7252f8e218..b105c2781aac0dc3722f0829fd846eb9e2e47250 100644 |
--- a/android_webview/native/aw_quota_manager_bridge_impl.cc |
+++ b/android_webview/native/aw_quota_manager_bridge_impl.cc |
@@ -194,7 +194,7 @@ void AwQuotaManagerBridgeImpl::DeleteAllData(JNIEnv* env, jobject object) { |
StoragePartition::REMOVE_DATA_MASK_INDEXEDDB | |
StoragePartition::REMOVE_DATA_MASK_LOCAL_STORAGE | |
StoragePartition::REMOVE_DATA_MASK_WEBSQL, |
- StoragePartition::kQuotaManagedTemporaryStorage); |
+ StoragePartition::QUOTA_MANAGED_STORAGE_MASK_TEMPORARY); |
} |
void AwQuotaManagerBridgeImpl::DeleteOrigin( |
@@ -207,7 +207,7 @@ void AwQuotaManagerBridgeImpl::DeleteOrigin( |
StoragePartition::REMOVE_DATA_MASK_FILE_SYSTEMS | |
StoragePartition::REMOVE_DATA_MASK_INDEXEDDB | |
StoragePartition::REMOVE_DATA_MASK_WEBSQL, |
- StoragePartition::kQuotaManagedTemporaryStorage, |
+ StoragePartition::QUOTA_MANAGED_STORAGE_MASK_TEMPORARY, |
GURL(base::android::ConvertJavaStringToUTF16(env, origin)), |
storage_partition->GetURLRequestContext()); |
} |