Index: third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp |
diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp |
index d97d2bcd6a0162aba619de1bf84b5fd657dedafc..ed0f0e4f94f0af9b65690b455622ea94a2d5559f 100644 |
--- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp |
+++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp |
@@ -56,7 +56,7 @@ void DeprecatedStorageQuota::queryUsageAndQuota( |
StorageUsageCallback* success_callback, |
StorageErrorCallback* error_callback) { |
ExecutionContext* execution_context = script_state->GetExecutionContext(); |
- ASSERT(execution_context); |
+ DCHECK(execution_context); |
WebStorageQuotaType storage_type = static_cast<WebStorageQuotaType>(type_); |
if (storage_type != kWebStorageQuotaTypeTemporary && |
@@ -90,7 +90,7 @@ void DeprecatedStorageQuota::requestQuota( |
StorageQuotaCallback* success_callback, |
StorageErrorCallback* error_callback) { |
ExecutionContext* execution_context = script_state->GetExecutionContext(); |
- ASSERT(execution_context); |
+ DCHECK(execution_context); |
WebStorageQuotaType storage_type = static_cast<WebStorageQuotaType>(type_); |
if (storage_type != kWebStorageQuotaTypeTemporary && |