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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp

Issue 2676403003: IndexedDB: Add histograms for key type (Closed)
Patch Set: Created 3 years, 10 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/modules/indexeddb/IDBKey.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
index 356ad3bbf3b210df2566c89d03bcc990e57753aa..a898a08fb7036990592154ed3a1ec7ffca496903 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBKey.cpp
@@ -83,7 +83,6 @@ int IDBKey::compare(const IDBKey* other) const {
case NumberType:
return compareNumbers(m_number, other->m_number);
case InvalidType:
- case MinType:
ASSERT_NOT_REACHED();
return 0;
}

Powered by Google App Engine
This is Rietveld 408576698