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

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: Synced. 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
« no previous file with comments | « Source/modules/mediasource/SourceBuffer.cpp ('k') | Source/modules/mediastream/RTCDataChannel.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCDataChannel.h
diff --git a/Source/modules/mediastream/RTCDataChannel.h b/Source/modules/mediastream/RTCDataChannel.h
index 4dccf80587eaa9a5c709e36724e4c4bea20b51be..37004db8189f2161308ecf432b6ee32ae344e8d5 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();
« no previous file with comments | « Source/modules/mediasource/SourceBuffer.cpp ('k') | Source/modules/mediastream/RTCDataChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698