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

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

Issue 37203003: Dartium fixes for latest Blink rolls. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 2 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 | « no previous file | 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 88ee11e89d5886778da59b82753ff6e36039c5cf..726ae664cc8b18c670da97675001fa21484628ba 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -92,12 +92,15 @@ interface HTMLCanvasElement {
[Supplemental]
interface HTMLOptionsCollection {
[Suppressed] void add(optional HTMLOptionElement element, optional long before);
+ [Suppressed] void remove(HTMLOptionElement option); // Non standard.
};
[Supplemental]
interface HTMLSelectElement {
[Suppressed] void add([Default=Undefined] HTMLElement element, [Default=Undefined] HTMLElement before);
[Suppressed, Custom] void remove();
+ [Suppressed] void remove(long index);
+ [Suppressed] void remove(HTMLOptionElement option); // Non standard.
};
[Supplemental]
@@ -132,6 +135,11 @@ interface HTMLMediaElement {
};
[Supplemental]
+interface RTCPeerConnection {
+ [Suppressed, RaisesException] void addIceCandidate(RTCIceCandidate candidate);
+};
+
+[Supplemental]
interface WebGLContextEvent {
[Suppressed] void initEvent(optional DOMString eventTypeArg,
optional boolean canBubbleArg,
« no previous file with comments | « no previous file | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698