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

Unified Diff: Source/modules/crypto/AesCbcParams.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/AesCbcParams.h ('k') | Source/modules/crypto/AesKeyGenParams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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());
« no previous file with comments | « Source/modules/crypto/AesCbcParams.h ('k') | Source/modules/crypto/AesKeyGenParams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698