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 137 int FaviconTabHelper::StartDownload(const GURL& url, int max_image_size) {
148 max_image_size,
favicon_handler_unittest.cc 96 int max_image_size) {
98 download_id, image_url, image_size, max_image_size, false));
115 max_image_size(max_size) {}
120 int max_image_size; member in struct:__anon5002::DownloadHandler::Download
346 if (download_->max_image_size != 0 &&
347 downloaded_size > download_->max_image_size) {
348 downloaded_size = download_->max_image_size;
    [all...]
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.cc 395 int max_image_size = 0; // Do not resize images. local
403 max_image_size,

Completed in 706 milliseconds