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

Unified Diff: third_party/WebCore/Modules/indexeddb/IDBCursor.idl

Issue 11363035: Roll IDLs forward. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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/WebCore/Modules/indexeddb/IDBCursor.idl
diff --git a/third_party/WebCore/Modules/indexeddb/IDBCursor.idl b/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
index b514fe9517abcb1cb689728590ab4856b38e597d..4757093c860eebf0f7299e8c48c1fdc30e45c01f 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
@@ -33,14 +33,14 @@
const unsigned short PREV_NO_DUPLICATE = 3;
readonly attribute DOMString direction;
- readonly attribute IDBKey key;
- readonly attribute IDBKey primaryKey;
+ readonly attribute any key;
Emily Fortuna 2012/11/01 16:32:26 This is probably why the generated code changed th
+ readonly attribute any primaryKey;
readonly attribute IDBAny source;
[CallWith=ScriptExecutionContext] IDBRequest update(in any value)
raises (IDBDatabaseException);
// FIXME: Make this [EnforceRange] unsigned long once webkit.org/b/96798 lands.
- void advance(in long count)
+ void advance(in long long count)
raises (IDBDatabaseException);
[ImplementedAs=continueFunction] void continue(in [Optional] IDBKey key)
raises (IDBDatabaseException);

Powered by Google App Engine
This is Rietveld 408576698