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 48 class ImageRep;
61 typedef std::map<RepresentationType, internal::ImageRep*> RepresentationMap;
183 // Returns the ImageRep of the appropriate type or NULL if there is no
185 internal::ImageRep* GetRepresentation(
189 void AddRepresentation(internal::ImageRep* rep) const;
image.cc 169 // An ImageRep is the object that holds the backing memory for an Image. Each
170 // RepresentationType has an ImageRep subclass that is responsible for freeing
171 // the memory that the ImageRep holds. When an ImageRep is created, it expects
174 class ImageRep {
176 explicit ImageRep(Image::RepresentationType rep) : type_(rep) {}
178 // Deletes the associated pixels of an ImageRep.
179 virtual ~ImageRep() {}
214 class ImageRepPNG : public ImageRep {
216 ImageRepPNG() : ImageRep(Image::kImageRepPNG)
    [all...]

Completed in 515 milliseconds