Home | History | Annotate | Download | only in extensions

Lines Matching full:image

34 // NOTE: if the image is available already (or the resource is not valid), the
49 // Will be called when the image with the given index has loaded.
50 // The |image| is owned by the tracker, so the observer should make a copy
51 // if they need to access it after this call. |image| can be null if valid
52 // image was not found or it failed to decode. |resource| is the
53 // ExtensionResource where the |image| came from and the |index| represents
54 // the index of the image just loaded (starts at 0 and increments every
56 virtual void OnImageLoaded(SkBitmap* image,
64 // Specify image resource to load. If the loaded image is larger than
67 // if the image was found in the cache.
78 // When an image has finished loaded and been resized on the file thread, it
81 // it was the last image in the list. The |original_size| should be the size
82 // of the image before any resizing was done.
83 // |image| may be null if the file failed to decode.
84 void OnImageLoaded(SkBitmap* image, const ExtensionResource& resource,
88 // waiting for the image we remove the entry from load_map_.
93 // The view that is waiting for the image to load.
96 // ID to use for next image requested. This is an ever increasing integer.
99 // The object responsible for loading the image on the File thread.
104 // deleted while fetching the image the entry is removed from the map.