1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/icon_loader.h"
7 #include "base/basictypes.h"
9 #include "content/public/browser/browser_thread.h"
11 using content::BrowserThread
;
13 IconLoader::IconLoader(const base::FilePath
& file_path
, IconSize size
,
15 : target_message_loop_(NULL
),
16 file_path_(file_path
),
22 IconLoader::~IconLoader() {
25 void IconLoader::Start() {
26 target_message_loop_
= base::MessageLoopProxy::current();
28 BrowserThread::PostTaskAndReply(BrowserThread::FILE, FROM_HERE
,
29 base::Bind(&IconLoader::ReadGroup
, this),
30 base::Bind(&IconLoader::OnReadGroup
, this));
33 void IconLoader::ReadGroup() {
34 group_
= ReadGroupIDFromFilepath(file_path_
);
37 void IconLoader::OnReadGroup() {
38 if (IsIconMutableFromFilepath(file_path_
) ||
39 !delegate_
->OnGroupLoaded(this, group_
)) {
40 BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE
,
41 base::Bind(&IconLoader::ReadIcon
, this));
45 void IconLoader::NotifyDelegate() {
46 // If the delegate takes ownership of the Image, release it from the scoped
48 if (delegate_
->OnImageLoaded(this, image_
.get(), group_
))
49 ignore_result(image_
.release()); // Can't ignore return value.