Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / crypto / RsaKeyAlgorithm.cpp
index 025d624..e0e22fd 100644 (file)
@@ -42,9 +42,9 @@ RsaKeyAlgorithm::~RsaKeyAlgorithm()
 {
 }
 
-PassRefPtrWillBeRawPtr<RsaKeyAlgorithm> RsaKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm)
+RsaKeyAlgorithm* RsaKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm)
 {
-    return adoptRefWillBeNoop(new RsaKeyAlgorithm(algorithm));
+    return new RsaKeyAlgorithm(algorithm);
 }
 
 unsigned RsaKeyAlgorithm::modulusLength()