void RTCDataChannel::setBinaryType(const String& binaryType, ExceptionState& exceptionState) { if (binaryType == "blob") throwNoBlobSupportException(exceptionState); else if (binaryType == "arraybuffer") m_binaryType = BinaryTypeArrayBuffer; else exceptionState.throwDOMException(TypeMismatchError, "Unknown binary type : " + binaryType); }
void RTCDataChannel::send(PassRefPtrWillBeRawPtr<Blob> data, ExceptionState& exceptionState) { // FIXME: implement throwNoBlobSupportException(exceptionState); }
void RTCDataChannel::send(Blob* data, ExceptionState& exceptionState) { // FIXME: implement throwNoBlobSupportException(exceptionState); }