| Index: Source/modules/crypto/RsaKeyGenParams.cpp
|
| diff --git a/Source/modules/crypto/RsaKeyGenParams.cpp b/Source/modules/crypto/RsaKeyGenParams.cpp
|
| index 69a9e6763d6e4574c31dfba56b65fabdd780934b..53c3f145c1c791b1eb48cc045a4e871e13915b54 100644
|
| --- a/Source/modules/crypto/RsaKeyGenParams.cpp
|
| +++ b/Source/modules/crypto/RsaKeyGenParams.cpp
|
| @@ -43,13 +43,13 @@ unsigned RsaKeyGenParams::modulusLength() const
|
| Uint8Array* RsaKeyGenParams::publicExponent()
|
| {
|
| if (!m_publicExponent) {
|
| - const WebKit::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent();
|
| + const blink::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent();
|
| m_publicExponent = Uint8Array::create(exponent.data(), exponent.size());
|
| }
|
| return m_publicExponent.get();
|
| }
|
|
|
| -RsaKeyGenParams::RsaKeyGenParams(const WebKit::WebCryptoAlgorithm& algorithm)
|
| +RsaKeyGenParams::RsaKeyGenParams(const blink::WebCryptoAlgorithm& algorithm)
|
| : Algorithm(algorithm)
|
| {
|
| ASSERT(algorithm.rsaKeyGenParams());
|
|
|