| Index: Source/modules/crypto/CryptoResultImpl.cpp
|
| diff --git a/Source/modules/crypto/CryptoResultImpl.cpp b/Source/modules/crypto/CryptoResultImpl.cpp
|
| index e291b50ab3d4442e7ee8c35030dedc5370d0f0ee..8d6c2ba0afda4e5c35fa984b8bcdf8a2f78c5b9c 100644
|
| --- a/Source/modules/crypto/CryptoResultImpl.cpp
|
| +++ b/Source/modules/crypto/CryptoResultImpl.cpp
|
| @@ -61,7 +61,7 @@ void CryptoResultImpl::completeWithError()
|
| finish();
|
| }
|
|
|
| -void CryptoResultImpl::completeWithBuffer(const WebKit::WebArrayBuffer& buffer)
|
| +void CryptoResultImpl::completeWithBuffer(const blink::WebArrayBuffer& buffer)
|
| {
|
| m_promiseResolver->resolve(PassRefPtr<ArrayBuffer>(buffer));
|
| finish();
|
| @@ -73,13 +73,13 @@ void CryptoResultImpl::completeWithBoolean(bool b)
|
| finish();
|
| }
|
|
|
| -void CryptoResultImpl::completeWithKey(const WebKit::WebCryptoKey& key)
|
| +void CryptoResultImpl::completeWithKey(const blink::WebCryptoKey& key)
|
| {
|
| m_promiseResolver->resolve(Key::create(key));
|
| finish();
|
| }
|
|
|
| -void CryptoResultImpl::completeWithKeyPair(const WebKit::WebCryptoKey& publicKey, const WebKit::WebCryptoKey& privateKey)
|
| +void CryptoResultImpl::completeWithKeyPair(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey)
|
| {
|
| m_promiseResolver->resolve(KeyPair::create(publicKey, privateKey));
|
| finish();
|
|
|