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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 569783002: Migrate to Chrome 37 IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 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 | « tools/dom/dom.json ('k') | tools/dom/scripts/dartdomgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index ee014c0b88793212e2512e7381b05539102688ed..a59b22a46fa3e6f90ebe2b0ec14ec7246ee5c4d4 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -43,20 +43,6 @@ interface ScriptProcessorNode {
[Custom] void _setEventListener(EventListener eventListener);
};
-/*
-// TODO(vsm): How should this interact with the new ChildNode and
-// ParentNode interfaces?
-// Force ElementTraversal. WebKit defines these directly.
-interface ElementTraversal : ChildNode, ParentNode {
- readonly attribute unsigned long childElementCount;
- readonly attribute Element firstElementChild;
- readonly attribute Element lastElementChild;
- readonly attribute Element nextElementSibling;
- readonly attribute Element previousElementSibling;
-};
-Element implements ElementTraversal;
-*/
-
[DartSupplemental]
interface Element {
readonly attribute Element nextElementSibling;
@@ -229,8 +215,8 @@ interface IDBObjectStore {
[CallWith=ScriptState, RaisesException] IDBRequest put(any value, [DartForceOptional] optional any key);
[CallWith=ScriptState, RaisesException] IDBRequest add(any value, [DartForceOptional] optional any key);
// [CallWith=ExecutionContext, ImplementedAs=deleteFunction, RaisesException] IDBRequest delete(any key);
- [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor(any key, [DartForceOptional] optional DOMString direction);
- [CallWith=ExecutionContext, RaisesException] IDBRequest count(any key);
+ [CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, [DartForceOptional] optional DOMString direction);
+ [CallWith=ExecutionContext, RaisesException] IDBRequest count([Default=Undefined] any key);
};
interface EntrySync {
@@ -239,7 +225,6 @@ interface EntrySync {
EntrySync getParent();
};
-
[DartSupplemental,
CustomConstructor,
Constructor(Array blobParts, optional DOMString type, optional DOMString endings)
« no previous file with comments | « tools/dom/dom.json ('k') | tools/dom/scripts/dartdomgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698