| Index: Source/platform/exported/WebCryptoResult.cpp
|
| diff --git a/Source/platform/exported/WebCryptoResult.cpp b/Source/platform/exported/WebCryptoResult.cpp
|
| index f2499c8b0c2d31f17a6bd2bc53c92fc3b9fb82d9..2f297dd492fdd6d45dd5955a273a050b91bfc67f 100644
|
| --- a/Source/platform/exported/WebCryptoResult.cpp
|
| +++ b/Source/platform/exported/WebCryptoResult.cpp
|
| @@ -53,7 +53,7 @@ void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer)
|
|
|
| void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize)
|
| {
|
| - WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1);
|
| + WebArrayBuffer buffer = WebArrayBuffer::create(bytesSize, 1);
|
| RELEASE_ASSERT(!buffer.isNull());
|
| memcpy(buffer.data(), bytes, bytesSize);
|
| completeWithBuffer(buffer);
|
| @@ -91,7 +91,7 @@ bool WebCryptoResult::cancelled() const
|
| return m_impl->cancelled();
|
| }
|
|
|
| -WebCryptoResult::WebCryptoResult(const PassRefPtr<blink::CryptoResult>& impl)
|
| +WebCryptoResult::WebCryptoResult(const PassRefPtr<CryptoResult>& impl)
|
| : m_impl(impl)
|
| {
|
| ASSERT(m_impl.get());
|
|
|