Index: Source/modules/mediastream/RTCIceCandidate.cpp |
diff --git a/Source/modules/mediastream/RTCIceCandidate.cpp b/Source/modules/mediastream/RTCIceCandidate.cpp |
index 9db0e0684cba21f0dcc43595f92468205bf53485..2038f137aa66bc39278293023e7eafe684d41425 100644 |
--- a/Source/modules/mediastream/RTCIceCandidate.cpp |
+++ b/Source/modules/mediastream/RTCIceCandidate.cpp |
@@ -43,7 +43,7 @@ PassRefPtr<RTCIceCandidate> RTCIceCandidate::create(const Dictionary& dictionary |
String candidate; |
bool ok = dictionary.get("candidate", candidate); |
if (!ok || !candidate.length()) { |
- ec = TYPE_MISMATCH_ERR; |
+ ec = TypeMismatchError; |
return 0; |
} |