// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/icon_loader.h" #import #include "base/message_loop.h" #include "base/thread.h" #include "base/sys_string_conversions.h" #include "skia/ext/skia_utils_mac.h" #include "third_party/skia/include/core/SkBitmap.h" void IconLoader::ReadIcon() { NSString* group = base::SysUTF8ToNSString(group_); NSWorkspace* workspace = [NSWorkspace sharedWorkspace]; NSImage* icon = [workspace iconForFileType:group]; NSSize size; if (icon_size_ == NORMAL) size = NSMakeSize(32, 32); else if (icon_size_ == SMALL) size = NSMakeSize(16, 16); else return; bitmap_ = new SkBitmap(gfx::NSImageToSkBitmap(icon, size, false)); target_message_loop_->PostTask(FROM_HERE, NewRunnableMethod(this, &IconLoader::NotifyDelegate)); }