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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBCursor.idl

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/IDBCursor.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.idl b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.idl
index 5f2613d75ddd63851f3d5edc225fa82015aeba88..17e55e55db45de2b64973686bff78cb6e7de486c 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBCursor.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBCursor.idl
@@ -45,7 +45,6 @@ enum IDBCursorDirection {
[CallWith=ScriptState, RaisesException] IDBRequest update(any value);
[RaisesException] void advance([EnforceRange] unsigned long count);
[CallWith=ScriptState, ImplementedAs=continueFunction, RaisesException] void continue([Default=Undefined] optional any key);
- // TODO(jsbell): Proposal: https://github.com/w3c/IndexedDB/issues/14
- [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental] void continuePrimaryKey(any key, any primaryKey);
+ [CallWith=ScriptState, RaisesException] void continuePrimaryKey(any key, any primaryKey);
[CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
};

Powered by Google App Engine
This is Rietveld 408576698