| Index: third_party/WebKit/Source/modules/speech/SpeechSynthesisVoice.cpp
|
| diff --git a/third_party/WebKit/Source/modules/speech/SpeechSynthesisVoice.cpp b/third_party/WebKit/Source/modules/speech/SpeechSynthesisVoice.cpp
|
| index 8b7426d978c4638ffa02630d6099aaec3f0824c6..e153f22ddbf8837021140e11c22440f4effa8ad6 100644
|
| --- a/third_party/WebKit/Source/modules/speech/SpeechSynthesisVoice.cpp
|
| +++ b/third_party/WebKit/Source/modules/speech/SpeechSynthesisVoice.cpp
|
| @@ -29,7 +29,7 @@ namespace blink {
|
|
|
| SpeechSynthesisVoice* SpeechSynthesisVoice::create(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
|
| {
|
| - return new SpeechSynthesisVoice(voice);
|
| + return new SpeechSynthesisVoice(std::move(voice));
|
| }
|
|
|
| SpeechSynthesisVoice::SpeechSynthesisVoice(PassRefPtr<PlatformSpeechSynthesisVoice> voice)
|
|
|