Index: third_party/WebKit/Source/modules/speech/SpeechRecognitionClient.h |
diff --git a/third_party/WebKit/Source/modules/speech/SpeechRecognitionClient.h b/third_party/WebKit/Source/modules/speech/SpeechRecognitionClient.h |
index 80d6f9be809922d514c34ae58df9d26ab65a8e6a..4fdbe5f6703518a2f74009efb89253321bbe4518 100644 |
--- a/third_party/WebKit/Source/modules/speech/SpeechRecognitionClient.h |
+++ b/third_party/WebKit/Source/modules/speech/SpeechRecognitionClient.h |
@@ -28,6 +28,7 @@ |
#include "modules/ModulesExport.h" |
#include "wtf/text/WTFString.h" |
+#include <memory> |
namespace blink { |
@@ -45,7 +46,7 @@ public: |
virtual ~SpeechRecognitionClient() { } |
}; |
-MODULES_EXPORT void provideSpeechRecognitionTo(Page&, PassOwnPtr<SpeechRecognitionClient>); |
+MODULES_EXPORT void provideSpeechRecognitionTo(Page&, std::unique_ptr<SpeechRecognitionClient>); |
} // namespace blink |