Index: Source/modules/crypto/HmacParams.h |
diff --git a/Source/modules/crypto/HmacParams.h b/Source/modules/crypto/HmacParams.h |
index 45ddebd038b2ab3b7450d14a1bbdea7259b3694d..eb85d0915524ef66a1b8514ae9a7a6a941466158 100644 |
--- a/Source/modules/crypto/HmacParams.h |
+++ b/Source/modules/crypto/HmacParams.h |
@@ -38,12 +38,12 @@ namespace WebCore { |
class HmacParams : public Algorithm { |
public: |
- static PassRefPtr<HmacParams> create(const WebKit::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); } |
+ static PassRefPtr<HmacParams> create(const blink::WebCryptoAlgorithm& algorithm) { return adoptRef(new HmacParams(algorithm)); } |
Algorithm* hash(); |
private: |
- explicit HmacParams(const WebKit::WebCryptoAlgorithm&); |
+ explicit HmacParams(const blink::WebCryptoAlgorithm&); |
RefPtr<Algorithm> m_hash; |
}; |