Index: Source/modules/crypto/Algorithm.h |
diff --git a/Source/modules/crypto/Algorithm.h b/Source/modules/crypto/Algorithm.h |
index 5a201b96ce51282e3a3ed882009617d175485d7c..779bf28ea0123b65c76045da85b6deae72244268 100644 |
--- a/Source/modules/crypto/Algorithm.h |
+++ b/Source/modules/crypto/Algorithm.h |
@@ -41,16 +41,16 @@ namespace WebCore { |
class Algorithm : public ScriptWrappable, public RefCounted<Algorithm> { |
public: |
- static PassRefPtr<Algorithm> create(const WebKit::WebCryptoAlgorithm&); |
+ static PassRefPtr<Algorithm> create(const blink::WebCryptoAlgorithm&); |
String name(); |
- WebKit::WebCryptoAlgorithmParamsType type() const { return m_algorithm.paramsType(); } |
+ blink::WebCryptoAlgorithmParamsType type() const { return m_algorithm.paramsType(); } |
protected: |
- explicit Algorithm(const WebKit::WebCryptoAlgorithm&); |
+ explicit Algorithm(const blink::WebCryptoAlgorithm&); |
- const WebKit::WebCryptoAlgorithm m_algorithm; |
+ const blink::WebCryptoAlgorithm m_algorithm; |
}; |
} // namespace WebCore |