| Index: Source/bindings/v8/custom/V8AlgorithmCustom.cpp
|
| diff --git a/Source/bindings/v8/custom/V8AlgorithmCustom.cpp b/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
|
| index 9c501370a0d9e0f9c3941f2ae345fb97a95d5314..11d9395cf396eec3f4c0c699fdad092ed7546866 100644
|
| --- a/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
|
| +++ b/Source/bindings/v8/custom/V8AlgorithmCustom.cpp
|
| @@ -47,22 +47,22 @@ v8::Handle<v8::Object> wrap(Algorithm* impl, v8::Handle<v8::Object> creationCont
|
|
|
| // Wrap as the more derived type.
|
| switch (impl->type()) {
|
| - case WebKit::WebCryptoAlgorithmParamsTypeNone:
|
| + case blink::WebCryptoAlgorithmParamsTypeNone:
|
| return V8Algorithm::createWrapper(impl, creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeAesCbcParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeAesCbcParams:
|
| return wrap(static_cast<AesCbcParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeAesKeyGenParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeAesKeyGenParams:
|
| return wrap(static_cast<AesKeyGenParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeHmacParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeHmacParams:
|
| return wrap(static_cast<HmacParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeHmacKeyParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeHmacKeyParams:
|
| return wrap(static_cast<HmacKeyParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeRsaSsaParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeRsaSsaParams:
|
| return wrap(static_cast<RsaSsaParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeRsaKeyGenParams:
|
| return wrap(static_cast<RsaKeyGenParams*>(impl), creationContext, isolate);
|
| - case WebKit::WebCryptoAlgorithmParamsTypeAesGcmParams:
|
| - case WebKit::WebCryptoAlgorithmParamsTypeRsaOaepParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeAesGcmParams:
|
| + case blink::WebCryptoAlgorithmParamsTypeRsaOaepParams:
|
| // TODO
|
| notImplemented();
|
| break;
|
|
|