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

Unified Diff: Source/modules/crypto/RsaKeyGenParams.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/RsaKeyGenParams.h ('k') | Source/modules/crypto/RsaSsaParams.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/RsaKeyGenParams.cpp
diff --git a/Source/modules/crypto/RsaKeyGenParams.cpp b/Source/modules/crypto/RsaKeyGenParams.cpp
index 69a9e6763d6e4574c31dfba56b65fabdd780934b..53c3f145c1c791b1eb48cc045a4e871e13915b54 100644
--- a/Source/modules/crypto/RsaKeyGenParams.cpp
+++ b/Source/modules/crypto/RsaKeyGenParams.cpp
@@ -43,13 +43,13 @@ unsigned RsaKeyGenParams::modulusLength() const
Uint8Array* RsaKeyGenParams::publicExponent()
{
if (!m_publicExponent) {
- const WebKit::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent();
+ const blink::WebVector<unsigned char>& exponent = m_algorithm.rsaKeyGenParams()->publicExponent();
m_publicExponent = Uint8Array::create(exponent.data(), exponent.size());
}
return m_publicExponent.get();
}
-RsaKeyGenParams::RsaKeyGenParams(const WebKit::WebCryptoAlgorithm& algorithm)
+RsaKeyGenParams::RsaKeyGenParams(const blink::WebCryptoAlgorithm& algorithm)
: Algorithm(algorithm)
{
ASSERT(algorithm.rsaKeyGenParams());
« no previous file with comments | « Source/modules/crypto/RsaKeyGenParams.h ('k') | Source/modules/crypto/RsaSsaParams.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698