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

Unified Diff: Source/modules/crypto/KeyPair.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/KeyPair.h ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/crypto/KeyPair.cpp
diff --git a/Source/modules/crypto/KeyPair.cpp b/Source/modules/crypto/KeyPair.cpp
index 87290bc24d11370d90b00d0392bf7b0b84851d53..6beaf2b2e20928e8de3e69b0e133ba8623df8305 100644
--- a/Source/modules/crypto/KeyPair.cpp
+++ b/Source/modules/crypto/KeyPair.cpp
@@ -36,10 +36,10 @@
namespace WebCore {
-PassRefPtr<KeyPair> KeyPair::create(const WebKit::WebCryptoKey& publicKey, const WebKit::WebCryptoKey& privateKey)
+PassRefPtr<KeyPair> KeyPair::create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey)
{
- ASSERT(publicKey.type() == WebKit::WebCryptoKeyTypePublic);
- ASSERT(privateKey.type() == WebKit::WebCryptoKeyTypePrivate);
+ ASSERT(publicKey.type() == blink::WebCryptoKeyTypePublic);
+ ASSERT(privateKey.type() == blink::WebCryptoKeyTypePrivate);
return adoptRef(new KeyPair(Key::create(publicKey), Key::create(privateKey)));
}
« no previous file with comments | « Source/modules/crypto/KeyPair.h ('k') | Source/modules/crypto/NormalizeAlgorithm.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698