HomeSort by relevance Sort by last modified time
    Searched refs:ImageRep (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/gfx/image/
image.h 52 class ImageRep;
67 typedef std::map<RepresentationType, internal::ImageRep*> RepresentationMap;
193 // Returns the ImageRep of the appropriate type or NULL if there is no
195 internal::ImageRep* GetRepresentation(
199 void AddRepresentation(internal::ImageRep* rep) const;
image.cc 194 // An ImageRep is the object that holds the backing memory for an Image. Each
195 // RepresentationType has an ImageRep subclass that is responsible for freeing
196 // the memory that the ImageRep holds. When an ImageRep is created, it expects
199 class ImageRep {
201 explicit ImageRep(Image::RepresentationType rep) : type_(rep) {}
203 // Deletes the associated pixels of an ImageRep.
204 virtual ~ImageRep() {}
251 class ImageRepPNG : public ImageRep {
253 ImageRepPNG() : ImageRep(Image::kImageRepPNG)
    [all...]

Completed in 459 milliseconds