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
|
@ -44,7 +44,7 @@ void IconLoader::ReadIcon() {
|
|||
|
||||
views::LinuxUI* ui = views::LinuxUI::instance();
|
||||
if (ui) {
|
||||
image = base::MakeUnique<gfx::Image>(
|
||||
image = std::make_unique<gfx::Image>(
|
||||
ui->GetIconForContentType(group_, size_pixels));
|
||||
if (image->IsEmpty())
|
||||
image = nullptr;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue