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

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

Issue 2743653004: Remove IndexedDB experimental features flag. (Closed)
Patch Set: Addressed feedback. Created 3 years, 9 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/IDBIndex.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp
index 3cfd0346e5c442cc4a8c638eb5fd6d6be3c7b254..268963493f36856a7343746da107cf8106638071 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp
@@ -65,9 +65,6 @@ DEFINE_TRACE(IDBIndex) {
}
void IDBIndex::setName(const String& name, ExceptionState& exceptionState) {
- if (!RuntimeEnabledFeatures::indexedDBExperimentalEnabled())
- return;
-
IDB_TRACE("IDBIndex::setName");
if (!m_transaction->isVersionChange()) {
exceptionState.throwDOMException(

Powered by Google App Engine
This is Rietveld 408576698