Home | History | Annotate | Download | only in extensions

Lines Matching refs:image

63     // Decode the image using WebKit's image decoder.
87 void ReportBack(SkBitmap* image, const ExtensionResource& resource,
94 image, resource, original_size, id));
97 void ReportOnUIThread(SkBitmap* image, const ExtensionResource& resource,
102 tracker_->OnImageLoaded(image, resource, original_size, id);
104 delete image;
108 // The tracker we are loading the image for. If NULL, it means the tracker is
130 // any valid image load tasks have been posted.
149 // See if the extension has the image already.
151 SkBitmap image = extension->GetCachedImage(resource, max_size);
152 OnImageLoaded(&image, resource, max_size, id);
168 SkBitmap* image,
174 i->second->SetCachedImage(resource, image ? *image : SkBitmap(),
179 observer_->OnImageLoaded(image, resource, id);
191 // we don't attempt to cache the image when the load completes.