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

Unified Diff: modules/indexeddb/IDBCursor.idl

Issue 1660113002: Updated to Chrome 45 (2454) moved from SVN to git. Base URL: https://github.com/dart-lang/webcore.git@roll_45
Patch Set: Created 4 years, 11 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 | « modules/imagebitmap/WindowImageBitmapFactories.idl ('k') | modules/indexeddb/IDBCursorWithValue.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/indexeddb/IDBCursor.idl
diff --git a/modules/indexeddb/IDBCursor.idl b/modules/indexeddb/IDBCursor.idl
index b96920ba650708be220a2e5557f3cdabdf9ff052..a0a25f3ef50afb86b5b475fc9f28984edb94c516 100644
--- a/modules/indexeddb/IDBCursor.idl
+++ b/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-IDBCursor
+// https://w3c.github.io/IndexedDB/#idl-def-IDBCursorDirection
enum IDBCursorDirection {
"next",
@@ -32,19 +32,21 @@ enum IDBCursorDirection {
"prevunique"
};
+// 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);
- // FIXMEDART: Define new names for these (see b/4436830).
[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 | « modules/imagebitmap/WindowImageBitmapFactories.idl ('k') | modules/indexeddb/IDBCursorWithValue.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698