replace base::MakeUnique with std::make_unique
This commit is contained in:
parent
97fb15ac49
commit
b05932310b
28 changed files with 50 additions and 50 deletions
|
@ -190,7 +190,7 @@ void RendererClientBase::DidClearWindowObject(
|
|||
std::unique_ptr<blink::WebSpeechSynthesizer>
|
||||
RendererClientBase::OverrideSpeechSynthesizer(
|
||||
blink::WebSpeechSynthesizerClient* client) {
|
||||
return base::MakeUnique<TtsDispatcher>(client);
|
||||
return std::make_unique<TtsDispatcher>(client);
|
||||
}
|
||||
|
||||
bool RendererClientBase::OverrideCreatePlugin(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue