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

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

Issue 1155883005: IndexedDB: Add draft/proposal links for some experimental APIs in IDLs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 years, 7 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
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBCursor.idl
diff --git a/Source/modules/indexeddb/IDBCursor.idl b/Source/modules/indexeddb/IDBCursor.idl
index 5d8ef9f56d9fe7d1ef06bbe45d587b79d7b1749a..a0a25f3ef50afb86b5b475fc9f28984edb94c516 100644
--- a/Source/modules/indexeddb/IDBCursor.idl
+++ b/Source/modules/indexeddb/IDBCursor.idl
@@ -23,7 +23,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// http://www.w3.org/TR/IndexedDB/#idl-def-IDBCursorDirection
+// https://w3c.github.io/IndexedDB/#idl-def-IDBCursorDirection
enum IDBCursorDirection {
"next",
@@ -32,21 +32,21 @@ enum IDBCursorDirection {
"prevunique"
};
-// http://www.w3.org/TR/IndexedDB/#idl-def-IDBCursor
+// https://w3c.github.io/IndexedDB/#idl-def-IDBCursor
[
Exposed=(Window,Worker),
GarbageCollected
] interface IDBCursor {
-
+ [CallWith=ScriptState] readonly attribute any source;
readonly attribute IDBCursorDirection direction;
[CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key;
[CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
- [CallWith=ScriptState] readonly attribute any source;
[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, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete();
};
« no previous file with comments | « no previous file | Source/modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698