Index: third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h |
diff --git a/third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h b/third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h |
index 113670d23d3ad89a83bfcb226aa185855f0e6054..df96d303b0d132250c7bcd03db1a5f9eb649b8d7 100644 |
--- a/third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h |
+++ b/third_party/WebKit/public/platform/WebCryptoKeyAlgorithm.h |
@@ -37,7 +37,7 @@ |
#include "WebPrivatePtr.h" |
#if INSIDE_BLINK |
-#include <memory> |
+#include "wtf/PassOwnPtr.h" |
#endif |
namespace blink { |
@@ -53,7 +53,7 @@ public: |
WebCryptoKeyAlgorithm() { } |
#if INSIDE_BLINK |
- BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, std::unique_ptr<WebCryptoKeyAlgorithmParams>); |
+ BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoKeyAlgorithmParams>); |
#endif |
// FIXME: Delete this in favor of the create*() functions. |