| Index: Source/modules/crypto/RsaKeyGenParams.h
|
| diff --git a/Source/modules/crypto/RsaKeyGenParams.h b/Source/modules/crypto/RsaKeyGenParams.h
|
| index 016e5aaa007ff59554fce30ea3611521f0dfc041..7a44705fc5b1836565973c97dda093e7ffdf0c59 100644
|
| --- a/Source/modules/crypto/RsaKeyGenParams.h
|
| +++ b/Source/modules/crypto/RsaKeyGenParams.h
|
| @@ -39,13 +39,13 @@ namespace WebCore {
|
|
|
| class RsaKeyGenParams : public Algorithm {
|
| public:
|
| - static PassRefPtr<RsaKeyGenParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
|
| + static PassRefPtr<RsaKeyGenParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new RsaKeyGenParams(algorithm)); }
|
|
|
| unsigned modulusLength() const;
|
| Uint8Array* publicExponent();
|
|
|
| private:
|
| - explicit RsaKeyGenParams(const WebKit::WebCryptoAlgorithm&);
|
| + explicit RsaKeyGenParams(const blink::WebCryptoAlgorithm&);
|
|
|
| RefPtr<Uint8Array> m_publicExponent;
|
| };
|
|
|