Index: Source/modules/crypto/KeyPair.h |
diff --git a/Source/modules/crypto/KeyPair.h b/Source/modules/crypto/KeyPair.h |
index ce20fd3c24b391ab74433f6bd17d4ed8293d9db7..7377e93e4b48ee99e0bd49f8f783383b161df52e 100644 |
--- a/Source/modules/crypto/KeyPair.h |
+++ b/Source/modules/crypto/KeyPair.h |
@@ -36,7 +36,7 @@ |
#include "wtf/RefCounted.h" |
#include "wtf/RefPtr.h" |
-namespace WebKit { class WebCryptoKey; } |
+namespace blink { class WebCryptoKey; } |
namespace WebCore { |
@@ -44,7 +44,7 @@ class Key; |
class KeyPair : public ScriptWrappable, public RefCounted<KeyPair> { |
public: |
- static PassRefPtr<KeyPair> create(const WebKit::WebCryptoKey& publicKey, const WebKit::WebCryptoKey& privateKey); |
+ static PassRefPtr<KeyPair> create(const blink::WebCryptoKey& publicKey, const blink::WebCryptoKey& privateKey); |
Key* publicKey() { return m_publicKey.get(); } |
Key* privateKey() { return m_privateKey.get(); } |