Searched defs:ImageSkia (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/ui/gfx/image/
H A Dimage_skia.h32 // ImageSkia should be used whenever possible instead of SkBitmap.
34 // returned from ImageSkia::GetRepresentation, not on ImageSkia.
36 // ImageSkia is cheap to copy and intentionally supports copy semantics.
37 class GFX_EXPORT ImageSkia { class in namespace:gfx
42 ImageSkia();
46 // ImageSkia owns |source|.
47 ImageSkia(ImageSkiaSource* source, const gfx::Size& size);
50 // at |scale| and uses its dimensions to calculate the size in DIP. ImageSkia
52 ImageSkia(ImageSkiaSourc
[all...]
H A Dimage_skia.cc60 // A helper class such that ImageSkia can be cheaply copied. ImageSkia holds a
61 // refptr instance of ImageSkiaStorage, which in turn holds all of ImageSkia's
78 ImageSkia::ImageSkiaReps::iterator it = FindRepresentation(scale, true);
120 for (ImageSkia::ImageSkiaReps::iterator it = image_reps_.begin();
149 ImageSkia::ImageSkiaReps::iterator closest_iter =
151 ImageSkia::ImageSkiaReps::iterator exact_iter =
154 for (ImageSkia::ImageSkiaReps::iterator it =
174 "An ImageSkia with the source must be accessed by the same thread.";
178 if (ImageSkia
260 ImageSkia::ImageSkia() : storage_(NULL) { function in class:gfx::ImageSkia
263 ImageSkia::ImageSkia(ImageSkiaSource* source, const gfx::Size& size) function in class:gfx::ImageSkia
270 ImageSkia::ImageSkia(ImageSkiaSource* source, float scale) function in class:gfx::ImageSkia
279 ImageSkia::ImageSkia(const ImageSkiaRep& image_rep) { function in class:gfx::ImageSkia
285 ImageSkia::ImageSkia(const ImageSkia& other) : storage_(other.storage_) { function in class:gfx::ImageSkia
[all...]

Completed in 286 milliseconds