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

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

Issue 2676403003: IndexedDB: Add histograms for key type (Closed)
Patch Set: Record index key types too 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/web/WebIDBKey.cpp
diff --git a/third_party/WebKit/Source/web/WebIDBKey.cpp b/third_party/WebKit/Source/web/WebIDBKey.cpp
index 187ee5d219359e654d34ddd52e1c26eb14e11ee4..64fb49062d6b12394deffdf31f0a05d387e2abd5 100644
--- a/third_party/WebKit/Source/web/WebIDBKey.cpp
+++ b/third_party/WebKit/Source/web/WebIDBKey.cpp
@@ -139,9 +139,6 @@ static void convertToWebIDBKeyArray(const IDBKey::KeyArray& array,
case IDBKey::InvalidType:
keys[i] = WebIDBKey::createInvalid();
break;
- case IDBKey::MinType:
- NOTREACHED();
- break;
}
}
result.swap(keys);

Powered by Google App Engine
This is Rietveld 408576698