Index: Source/modules/crypto/HmacKeyParams.h |
diff --git a/Source/modules/crypto/HmacKeyParams.h b/Source/modules/crypto/HmacKeyParams.h |
index 234ab47808b5e559bebf0201fd15b540ceda1001..64b286ca7aebd589f68d2d18465888ec6b58163d 100644 |
--- a/Source/modules/crypto/HmacKeyParams.h |
+++ b/Source/modules/crypto/HmacKeyParams.h |
@@ -38,14 +38,14 @@ namespace WebCore { |
class HmacKeyParams : public Algorithm { |
public: |
- static PassRefPtr<HmacKeyParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacKeyParams(algorithm)); } |
+ static PassRefPtr<HmacKeyParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacKeyParams(algorithm)); } |
Algorithm* hash(); |
unsigned length(bool& isNull); |
private: |
- explicit HmacKeyParams(const WebKit::WebCryptoAlgorithm&); |
+ explicit HmacKeyParams(const blink::WebCryptoAlgorithm&); |
RefPtr<Algorithm> m_hash; |
}; |