Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / modules / crypto / AesKeyAlgorithm.cpp
index 1fc8188..015ac98 100644 (file)
@@ -36,9 +36,9 @@
 
 namespace WebCore {
 
-PassRefPtrWillBeRawPtr<AesKeyAlgorithm> AesKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm)
+AesKeyAlgorithm* AesKeyAlgorithm::create(const blink::WebCryptoKeyAlgorithm& algorithm)
 {
-    return adoptRefWillBeNoop(new AesKeyAlgorithm(algorithm));
+    return new AesKeyAlgorithm(algorithm);
 }
 
 unsigned short AesKeyAlgorithm::length()