Revert r196089 "Add default values for Latin script font prefs."
[chromium-blink-merge.git] / chrome / browser / icon_loader.cc
blobf8ea311b51257e4787f60c617f9d59ca978f35d9
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"
8 #include "base/bind.h"
9 #include "content/public/browser/browser_thread.h"
11 using content::BrowserThread;
13 IconLoader::IconLoader(const base::FilePath& file_path, IconSize size,
14 Delegate* delegate)
15 : target_message_loop_(NULL),
16 file_path_(file_path),
17 icon_size_(size),
18 image_(NULL),
19 delegate_(delegate) {
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
47 // pointer.
48 if (delegate_->OnImageLoaded(this, image_.get(), group_))
49 ignore_result(image_.release()); // Can't ignore return value.