| Index: Source/modules/crypto/AesCbcParams.cpp
|
| diff --git a/Source/modules/crypto/AesCbcParams.cpp b/Source/modules/crypto/AesCbcParams.cpp
|
| index e84bc7a2c984a644833b2bd67b73973315729a3e..b16e3317e89ad1216b083d5f23fc0efc140857ce 100644
|
| --- a/Source/modules/crypto/AesCbcParams.cpp
|
| +++ b/Source/modules/crypto/AesCbcParams.cpp
|
| @@ -38,13 +38,13 @@ namespace WebCore {
|
| Uint8Array* AesCbcParams::iv()
|
| {
|
| if (!m_iv) {
|
| - const WebKit::WebVector<unsigned char>& iv = m_algorithm.aesCbcParams()->iv();
|
| + const blink::WebVector<unsigned char>& iv = m_algorithm.aesCbcParams()->iv();
|
| m_iv = Uint8Array::create(iv.data(), iv.size());
|
| }
|
| return m_iv.get();
|
| }
|
|
|
| -AesCbcParams::AesCbcParams(const WebKit::WebCryptoAlgorithm& algorithm)
|
| +AesCbcParams::AesCbcParams(const blink::WebCryptoAlgorithm& algorithm)
|
| : Algorithm(algorithm)
|
| {
|
| ASSERT(algorithm.aesCbcParams());
|
|
|