Index: third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.h |
diff --git a/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.h b/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.h |
index 70237e0aa8cbdc162da1c4c6d783ba160df85748..3fd6ff12da7584b29c94375f2553a014cc18b921 100644 |
--- a/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.h |
+++ b/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.h |
@@ -30,7 +30,6 @@ |
#include "platform/heap/Handle.h" |
#include "platform/speech/PlatformSpeechSynthesisVoice.h" |
#include "wtf/Vector.h" |
-#include <memory> |
namespace blink { |
@@ -95,7 +94,7 @@ protected: |
private: |
Member<PlatformSpeechSynthesizerClient> m_speechSynthesizerClient; |
- std::unique_ptr<WebSpeechSynthesizer> m_webSpeechSynthesizer; |
+ OwnPtr<WebSpeechSynthesizer> m_webSpeechSynthesizer; |
Member<WebSpeechSynthesizerClientImpl> m_webSpeechSynthesizerClient; |
}; |