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

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

Issue 12315128: Chrome roll 181864->184590. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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/templates/html/impl/impl_HTMLDocument.darttemplate » ('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 713efe320eb85bc512e5a80722eed8783d142479..d60712ea30d50c1f19c0ee6b88b1f140cbd1e38a 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -209,8 +209,8 @@ interface DataView {
// We have to use custom code because our code generator does not support int8_t type.
// int8_t getInt8(in unsigned long byteOffset);
// uint8_t getUint8(in unsigned long byteOffset);
- [Suppressed] DOMObject getInt8();
- [Suppressed] DOMObject getUint8();
+ [Suppressed] any getInt8();
+ [Suppressed] any getUint8();
byte getInt8(in unsigned long byteOffset)
raises (DOMException);
octet getUint8(in unsigned long byteOffset)
@@ -341,5 +341,24 @@ interface WebSocket {
[Custom] void send(ArrayBufferView data) raises(DOMException);
};
+[Supplemental]
+interface XMLHttpRequest {
+ [Custom] void send()
+ raises(DOMException);
+ [Custom] void send(in ArrayBuffer data) // FIXME: this should be eventually deprecated.
+ raises(DOMException);
+ [Custom] void send(in ArrayBufferView data)
+ raises(DOMException);
+ [Conditional=BLOB, Custom] void send(in Blob data)
+ raises(DOMException);
+ [Custom] void send(in Document data)
+ raises(DOMException);
+ [Custom] void send([StrictTypeChecking] in DOMString data)
+ raises(DOMException);
+ [Custom] void send(in DOMFormData data)
+ raises(DOMException);
+};
+
+
[Suppressed]
interface Entity {};
« no previous file with comments | « no previous file | tools/dom/templates/html/impl/impl_HTMLDocument.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698