| Index: Source/modules/crypto/AesCbcParams.h
|
| diff --git a/Source/modules/crypto/AesCbcParams.h b/Source/modules/crypto/AesCbcParams.h
|
| index b422adf11f34db9e0f42980cf2f3841e82a5d2ea..223ca2bd161dc42500ba7bb6013f9663e595c90f 100644
|
| --- a/Source/modules/crypto/AesCbcParams.h
|
| +++ b/Source/modules/crypto/AesCbcParams.h
|
| @@ -38,12 +38,12 @@ namespace WebCore {
|
|
|
| class AesCbcParams : public Algorithm {
|
| public:
|
| - static PassRefPtr<AesCbcParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
|
| + static PassRefPtr<AesCbcParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new AesCbcParams(algorithm)); }
|
|
|
| Uint8Array* iv();
|
|
|
| private:
|
| - explicit AesCbcParams(const WebKit::WebCryptoAlgorithm&);
|
| + explicit AesCbcParams(const blink::WebCryptoAlgorithm&);
|
|
|
| RefPtr<Uint8Array> m_iv;
|
| };
|
|
|