| 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/message_loop/message_loop.h" | 8 #include "base/message_loop/message_loop.h" |
| 9 #include "base/nix/mime_util_xdg.h" | 9 #include "base/nix/mime_util_xdg.h" |
| 10 #include "ui/views/linux_ui/linux_ui.h" | 10 #include "ui/views/linux_ui/linux_ui.h" |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 } | 39 } |
| 40 | 40 |
| 41 views::LinuxUI* ui = views::LinuxUI::instance(); | 41 views::LinuxUI* ui = views::LinuxUI::instance(); |
| 42 if (ui) { | 42 if (ui) { |
| 43 gfx::Image image = ui->GetIconForContentType(group_, size_pixels); | 43 gfx::Image image = ui->GetIconForContentType(group_, size_pixels); |
| 44 if (!image.IsEmpty()) | 44 if (!image.IsEmpty()) |
| 45 image_.reset(new gfx::Image(image)); | 45 image_.reset(new gfx::Image(image)); |
| 46 } | 46 } |
| 47 | 47 |
| 48 target_task_runner_->PostTask( | 48 target_task_runner_->PostTask( |
| 49 FROM_HERE, base::Bind(&IconLoader::NotifyDelegate, this)); | 49 FROM_HERE, base::Bind(callback_, base::Passed(&image_), group_)); |
| 50 delete this; |
| 50 } | 51 } |
| OLD | NEW |