| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/icon_loader.h" | 5 #include "chrome/browser/icon_loader.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "base/message_loop/message_loop.h" | 9 #include "base/message_loop/message_loop.h" |
| 10 #include "base/nix/mime_util_xdg.h" | 10 #include "base/nix/mime_util_xdg.h" |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 std::unique_ptr<gfx::Image> image; | 42 std::unique_ptr<gfx::Image> image; |
| 43 views::LinuxUI* ui = views::LinuxUI::instance(); | 43 views::LinuxUI* ui = views::LinuxUI::instance(); |
| 44 if (ui) { | 44 if (ui) { |
| 45 image = base::MakeUnique<gfx::Image>( | 45 image = base::MakeUnique<gfx::Image>( |
| 46 ui->GetIconForContentType(group_, size_pixels)); | 46 ui->GetIconForContentType(group_, size_pixels)); |
| 47 if (image->IsEmpty()) | 47 if (image->IsEmpty()) |
| 48 image = nullptr; | 48 image = nullptr; |
| 49 } | 49 } |
| 50 | 50 |
| 51 target_task_runner_->PostTask( | 51 target_task_runner_->PostTask( |
| 52 FROM_HERE, base::Bind(callback_, base::Passed(&image), group_)); | 52 FROM_HERE, base::BindOnce(callback_, base::Passed(&image), group_)); |
| 53 delete this; | 53 delete this; |
| 54 } | 54 } |
| OLD | NEW |