| Index: third_party/WebKit/public/platform/WebRTCKeyParams.h
|
| diff --git a/third_party/WebKit/public/platform/WebRTCKeyParams.h b/third_party/WebKit/public/platform/WebRTCKeyParams.h
|
| index c930f079b3f0a5013d300831ab97fe1f859c38a0..7f7d29c7b1eba121be82de5ab8c37ced92b9f7f1 100644
|
| --- a/third_party/WebKit/public/platform/WebRTCKeyParams.h
|
| +++ b/third_party/WebKit/public/platform/WebRTCKeyParams.h
|
| @@ -32,6 +32,7 @@
|
| #define WebRTCKeyParams_h
|
|
|
| #include "WebCommon.h"
|
| +#include "base/logging.h"
|
|
|
| namespace blink {
|
|
|
| @@ -69,12 +70,12 @@ public:
|
| WebRTCKeyType keyType() const { return m_keyType; }
|
| WebRTCRSAParams rsaParams() const
|
| {
|
| - BLINK_ASSERT(m_keyType == WebRTCKeyTypeRSA);
|
| + DCHECK_EQ(m_keyType, WebRTCKeyTypeRSA);
|
| return m_params.rsa;
|
| }
|
| WebRTCECCurve ecCurve() const
|
| {
|
| - BLINK_ASSERT(m_keyType == WebRTCKeyTypeECDSA);
|
| + DCHECK_EQ(m_keyType, WebRTCKeyTypeECDSA);
|
| return m_params.ecCurve;
|
| }
|
|
|
|
|