Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(832)

Unified Diff: third_party/WebKit/Source/modules/storage/Storage.cpp

Issue 2811523002: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in modules/storage (Closed)
Patch Set: rebase Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/storage/StorageArea.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | third_party/WebKit/Source/modules/storage/StorageArea.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698