Chromium Code Reviews| 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); |