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))); |
} |