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

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

Issue 15012015: Dart.idl cleanup (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.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 39034c35e406feced4f43242f2dee062ac1b807c..b307156119ab8f044210fdc2e068e086a48af48c 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -159,11 +159,6 @@ interface WebGLRenderingContext {
[Custom] any getVertexAttrib(unsigned long index, unsigned long pname);
[Suppressed, StrictTypeChecking, Custom] void getVertexAttrib();
};
-[Supplemental]
-interface CSSStyleDeclaration {
- void setProperty(DOMString propertyName, DOMString value, [ForceOptional] optional DOMString priority);
- [DartName=_getPropertyValue] DOMString getPropertyValue(DOMString propertyName);
-};
// TODO(vsm): Define new names for these (see b/4436830).
[Supplemental]
@@ -181,14 +176,6 @@ interface IDBIndex {
[CallWith=ScriptExecutionContext, RaisesException] IDBRequest count([ForceOptional] optional IDBKeyRange? range);
[CallWith=ScriptExecutionContext, RaisesException] IDBRequest count(any key);
};
-[Supplemental]
-interface IDBDatabase {
- // These variants are slated for removal from WebKit. Suppress to bring our
- // API in line with the most recent spec.
- [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(DOMStringList storeNames, unsigned short mode);
- [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(DOMString[] storeNames, unsigned short mode);
- [Suppressed, CallWith=ScriptExecutionContext] IDBTransaction transaction(DOMString storeName, unsigned short mode);
-};
[Supplemental]
interface IDBKeyRange {
@@ -247,20 +234,17 @@ interface SVGNumber {
// Provide missing constructor signature.
Constructor(MutationCallback callback)]
interface MutationObserver {
- // Rename 'observe' so we can define a new 'observe' API that calls the
- // original.
- [DartName=_observe] void observe(Node target, Dictionary options);
};
- [Supplemental,
- CustomConstructor,
- // Provide missing constructor signature.
- Constructor(optional HTMLFormElement form)]
- interface DOMFormData {
- [Suppressed] void append(DOMString name, DOMString value, DOMString filename);
- [Custom] void append(DOMString name, DOMString value);
- [Custom] void append(DOMString name, Blob value, optional DOMString filename);
- };
+[Supplemental,
+ CustomConstructor,
+ // Provide missing constructor signature.
+ Constructor(optional HTMLFormElement form)]
+interface DOMFormData {
+ [Suppressed] void append(DOMString name, DOMString value, DOMString filename);
+ [Custom] void append(DOMString name, DOMString value);
+ [Custom] void append(DOMString name, Blob value, optional DOMString filename);
+};
[Supplemental]
interface SQLResultSetRowList {
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698