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

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

Issue 10381128: Roll IDL to multivm@516 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « lib/html/frog/html_frog.dart ('k') | third_party/WebCore/Modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 80eb6b2330f8bc688f79bd6a071a84923683bad4..d73d146274418402742320f4f3e606ab3d202e49 100644
--- a/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
+++ b/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
@@ -28,12 +28,13 @@ module storage {
interface [
Conditional=INDEXED_DATABASE,
] IDBCursor {
+ // FIXME: Eventually remove legacy enum constants, see https://bugs.webkit.org/show_bug.cgi?id=85315
const unsigned short NEXT = 0;
const unsigned short NEXT_NO_DUPLICATE = 1;
const unsigned short PREV = 2;
const unsigned short PREV_NO_DUPLICATE = 3;
- readonly attribute unsigned short direction;
+ readonly attribute DOMString direction;
readonly attribute IDBKey key;
readonly attribute IDBKey primaryKey;
readonly attribute IDBAny source;
« no previous file with comments | « lib/html/frog/html_frog.dart ('k') | third_party/WebCore/Modules/indexeddb/IDBDatabase.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698