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 df96d303b0d132250c7bcd03db1a5f9eb649b8d7..113670d23d3ad89a83bfcb226aa185855f0e6054 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 "wtf/PassOwnPtr.h" |
+#include <memory> |
#endif |
namespace blink { |
@@ -53,7 +53,7 @@ public: |
WebCryptoKeyAlgorithm() { } |
#if INSIDE_BLINK |
- BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, PassOwnPtr<WebCryptoKeyAlgorithmParams>); |
+ BLINK_PLATFORM_EXPORT WebCryptoKeyAlgorithm(WebCryptoAlgorithmId, std::unique_ptr<WebCryptoKeyAlgorithmParams>); |
#endif |
// FIXME: Delete this in favor of the create*() functions. |