Index: third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.cpp |
diff --git a/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.cpp b/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.cpp |
index 9da6fedff0e26bbabcc8a9acd03e2ca7665384d4..5e633e7a2417bd8cf89bc19eebda275d39e09b6b 100644 |
--- a/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.cpp |
+++ b/third_party/WebKit/Source/platform/speech/PlatformSpeechSynthesizer.cpp |
@@ -48,9 +48,8 @@ PlatformSpeechSynthesizer::PlatformSpeechSynthesizer( |
: speech_synthesizer_client_(client) { |
web_speech_synthesizer_client_ = |
new WebSpeechSynthesizerClientImpl(this, client); |
- web_speech_synthesizer_ = |
- WTF::WrapUnique(Platform::Current()->CreateSpeechSynthesizer( |
- web_speech_synthesizer_client_)); |
+ web_speech_synthesizer_ = Platform::Current()->CreateSpeechSynthesizer( |
+ web_speech_synthesizer_client_); |
} |
PlatformSpeechSynthesizer::~PlatformSpeechSynthesizer() {} |