Index: Source/modules/mediastream/RTCDataChannel.cpp |
diff --git a/Source/modules/mediastream/RTCDataChannel.cpp b/Source/modules/mediastream/RTCDataChannel.cpp |
index 5733ccb2024175603f25e392fb83b16cb0231d20..e34915a8e0630ff3d268c08afeba7f422e425c49 100644 |
--- a/Source/modules/mediastream/RTCDataChannel.cpp |
+++ b/Source/modules/mediastream/RTCDataChannel.cpp |
@@ -25,7 +25,6 @@ |
#include "config.h" |
#include "modules/mediastream/RTCDataChannel.h" |
-#include "bindings/v8/ExceptionMessages.h" |
#include "bindings/v8/ExceptionState.h" |
#include "core/events/Event.h" |
#include "core/dom/ExceptionCode.h" |
@@ -51,7 +50,7 @@ static void throwCouldNotSendDataException(ExceptionState& exceptionState) |
static void throwNoBlobSupportException(ExceptionState& exceptionState) |
{ |
- exceptionState.throwDOMException(NotSupportedError, ExceptionMessages::failedToExecute("send", "RTCDataChannel", "Blob support not implemented yet")); |
+ exceptionState.throwDOMException(NotSupportedError, "Blob support not implemented yet"); |
} |
PassRefPtr<RTCDataChannel> RTCDataChannel::create(ExecutionContext* context, PassOwnPtr<RTCDataChannelHandler> handler) |