| Index: Source/modules/crypto/NormalizeAlgorithm.cpp
|
| diff --git a/Source/modules/crypto/NormalizeAlgorithm.cpp b/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| index bed68417d6b9bbed4d82067f87cd9de99a9d7ecc..96e1f734adac3a65395e9ee7f8ed33278e890462 100644
|
| --- a/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| +++ b/Source/modules/crypto/NormalizeAlgorithm.cpp
|
| @@ -34,6 +34,7 @@
|
| #include "bindings/v8/Dictionary.h"
|
| #include "bindings/v8/ExceptionState.h"
|
| #include "core/dom/ExceptionCode.h"
|
| +#include "platform/NotImplemented.h"
|
| #include "public/platform/WebCryptoAlgorithm.h"
|
| #include "public/platform/WebCryptoAlgorithmParams.h"
|
| #include "wtf/ArrayBuffer.h"
|
| @@ -433,6 +434,11 @@ bool parseAlgorithmParams(const Dictionary& raw, WebKit::WebCryptoAlgorithmParam
|
| case WebKit::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
|
| context.add("RsaKeyGenParams");
|
| return parseRsaKeyGenParams(raw, params, context, es);
|
| + case WebKit::WebCryptoAlgorithmParamsTypeAesGcmParams:
|
| + case WebKit::WebCryptoAlgorithmParamsTypeRsaOaepParams:
|
| + // TODO
|
| + notImplemented();
|
| + break;
|
| }
|
| ASSERT_NOT_REACHED();
|
| return false;
|
|
|