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

  /external/chromium_org/content/renderer/
image_loading_helper.h 34 uint32_t max_image_size);
42 // the frames whose size <= |max_image_size| are returned. If all of the
43 // frames are larger than |max_image_size|, the smallest frame is resized to
44 // |max_image_size| and is the only result. |max_image_size| == 0 is
49 uint32_t max_image_size);
55 uint32_t max_image_size,
image_loading_helper.cc 32 // |max_image_size|.
33 SkBitmap ResizeImage(const SkBitmap& image, uint32_t max_image_size) {
34 if (max_image_size == 0)
37 if (max_dimension <= max_image_size)
40 // max_image_size.
44 static_cast<uint64_t>(image.width()) * max_image_size / max_dimension,
45 static_cast<uint64_t>(image.height()) * max_image_size / max_dimension);
49 // size |max_image_size|. Returns the result if it is not empty. Otherwise,
51 // in a box of size |max_image_size|.
55 uint32_t max_image_size,
    [all...]
  /external/chromium_org/chrome/browser/favicon/
favicon_tab_helper.cc 142 int FaviconTabHelper::StartDownload(const GURL& url, int max_image_size) {
153 max_image_size,
favicon_handler_unittest.cc 93 int max_image_size) {
95 download_id, image_url, image_sizes, max_image_size, false));
117 max_image_size(max_size) {}
122 int max_image_size; member in struct:__anon8590::DownloadHandler::Download
383 if (download_->max_image_size != 0 &&
384 downloaded_size > download_->max_image_size) {
385 downloaded_size = download_->max_image_size;
    [all...]
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.cc 394 int max_image_size = 0; // Do not resize images. local
402 max_image_size,

Completed in 75 milliseconds