Home | History | Annotate | Download | only in extensions

Lines Matching defs:images

180 // Read the decoded images back from the file we saved them to.
184 DecodedImages* images) {
193 return IPC::ReadParam(&pickle, &iter, images);
370 // installed. For example, the install UI shows images from inside the
647 DecodedImages images;
648 if (!ReadImagesFromFile(temp_dir_.path(), &images)) {
658 // Delete any images that may be used by the browser. We're going to write
659 // out our own versions of the parsed images, and we want to make sure the
663 if (image_paths.size() != images.size()) {
664 // Decoded images don't match what's in the manifest.
700 // Write our parsed images back to disk as well.
701 for (size_t i = 0; i < images.size(); ++i) {
712 const SkBitmap& image = images[i].a;
713 base::FilePath path_suffix = images[i].b;
729 // TODO(mpcomplete): It's lame that we're encoding all images as PNG, even