Index: third_party/WebKit/Source/modules/storage/Storage.cpp |
diff --git a/third_party/WebKit/Source/modules/storage/Storage.cpp b/third_party/WebKit/Source/modules/storage/Storage.cpp |
index e5694d5974cf89492cf47010754fb47ed13c62dc..47a2814c88f7e7679871e47a991dcfa201b46f20 100644 |
--- a/third_party/WebKit/Source/modules/storage/Storage.cpp |
+++ b/third_party/WebKit/Source/modules/storage/Storage.cpp |
@@ -82,7 +82,7 @@ void Storage::NamedPropertyEnumerator(Vector<String>& names, |
String key = this->key(i, exception_state); |
if (exception_state.HadException()) |
return; |
- ASSERT(!key.IsNull()); |
+ DCHECK(!key.IsNull()); |
String val = getItem(key, exception_state); |
if (exception_state.HadException()) |
return; |