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

Unified Diff: Source/modules/mediastream/RTCDataChannel.h

Issue 606653006: bindings: Adds DOMArrayBuffer, etc. as thin wrappers for ArrayBuffer, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Win GPU tests (DOMDataView). Created 6 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
Index: Source/modules/mediastream/RTCDataChannel.h
diff --git a/Source/modules/mediastream/RTCDataChannel.h b/Source/modules/mediastream/RTCDataChannel.h
index c2d39bf34f0c26e0f53ef815679119ea5dd400bd..b4391ad0b3ae99c4d6f49df5b3fab89547f92f34 100644
--- a/Source/modules/mediastream/RTCDataChannel.h
+++ b/Source/modules/mediastream/RTCDataChannel.h
@@ -34,6 +34,8 @@
namespace blink {
class Blob;
+class DOMArrayBuffer;
+class DOMArrayBufferView;
class ExceptionState;
class RTCPeerConnection;
class WebRTCDataChannelHandler;
@@ -70,8 +72,8 @@ public:
void setBinaryType(const String&, ExceptionState&);
void send(const String&, ExceptionState&);
- void send(PassRefPtr<ArrayBuffer>, ExceptionState&);
- void send(PassRefPtr<ArrayBufferView>, ExceptionState&);
+ void send(PassRefPtr<DOMArrayBuffer>, ExceptionState&);
+ void send(PassRefPtr<DOMArrayBufferView>, ExceptionState&);
void send(Blob*, ExceptionState&);
void close();

Powered by Google App Engine
This is Rietveld 408576698