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

Unified Diff: third_party/WebKit/Source/web/WebIDBKey.cpp

Issue 1878493002: ASSERT_NOT_REACHED() -> NOTREACHED() in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/web/WebIDBKey.cpp
diff --git a/third_party/WebKit/Source/web/WebIDBKey.cpp b/third_party/WebKit/Source/web/WebIDBKey.cpp
index 911a2c0b8c9a354f22b1283dac261cd9f78145f9..a2f532313ade64c95e7d0d7ca6a86f06015238b9 100644
--- a/third_party/WebKit/Source/web/WebIDBKey.cpp
+++ b/third_party/WebKit/Source/web/WebIDBKey.cpp
@@ -116,7 +116,7 @@ static IDBKey* convertFromWebIDBKeyArray(const WebVector<WebIDBKey>& array)
break;
case WebIDBKeyTypeNull:
case WebIDBKeyTypeMin:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
}
@@ -150,7 +150,7 @@ static void convertToWebIDBKeyArray(const IDBKey::KeyArray& array, WebVector<Web
keys[i] = WebIDBKey::createInvalid();
break;
case IDBKey::MinType:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
break;
}
}
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp ('k') | third_party/WebKit/Source/web/WebInputEventConversion.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698