Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1942)

Unified Diff: Source/modules/crypto/CryptoResultImpl.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/crypto/CryptoResultImpl.h ('k') | Source/modules/crypto/HmacKeyParams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
« no previous file with comments | « Source/modules/crypto/CryptoResultImpl.h ('k') | Source/modules/crypto/HmacKeyParams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698