Home | History | Annotate | Download | only in extensions

Lines Matching defs:images

184   // installed. For example, the install UI shows images from inside the
461 ExtensionUnpacker::DecodedImages images;
462 if (!ExtensionUnpacker::ReadImagesFromFile(temp_dir_.path(), &images)) {
472 // Delete any images that may be used by the browser. We're going to write
473 // out our own versions of the parsed images, and we want to make sure the
476 if (image_paths.size() != images.size()) {
477 // Decoded images don't match what's in the manifest.
509 // Write our parsed images back to disk as well.
510 for (size_t i = 0; i < images.size(); ++i) {
511 const SkBitmap& image = images[i].a;
512 FilePath path_suffix = images[i].b;
525 // TODO(mpcomplete): It's lame that we're encoding all images as PNG, even