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

  /external/chromium_org/content/renderer/
image_loading_helper.cc 33 // |max_image_size|.
34 SkBitmap ResizeImage(const SkBitmap& image, uint32_t max_image_size) {
35 if (max_image_size == 0)
38 if (max_dimension <= max_image_size)
41 // max_image_size.
45 static_cast<uint64_t>(image.width()) * max_image_size / max_dimension,
46 static_cast<uint64_t>(image.height()) * max_image_size / max_dimension);
50 // size |max_image_size|. Returns the result if it is not empty. Otherwise,
52 // in a box of size |max_image_size|.
55 uint32_t max_image_size) {
    [all...]
image_loading_helper.h 35 uint32_t max_image_size);
49 uint32_t max_image_size);
56 uint32_t max_image_size,
  /external/chromium_org/chrome/browser/favicon/
favicon_handler_delegate.h 28 // |max_image_size| is the maximal size of the image. If the image at |url| is
32 int max_image_size) = 0;
favicon_tab_helper.h 73 int max_image_size) OVERRIDE;
favicon_tab_helper.cc 139 int max_image_size) {
151 max_image_size,
favicon_handler_unittest.cc 183 int max_image_size) OVERRIDE {
    [all...]
  /external/chromium_org/content/public/browser/
web_contents.h 451 // |max_image_size| is the maximal size of the returned image. It will be
456 uint32_t max_image_size,
  /external/chromium_org/chrome/browser/ui/
metro_pin_tab_helper_win.cc 398 int max_image_size = 0; // Do not resize images. local
407 max_image_size,
  /external/chromium_org/content/browser/web_contents/
web_contents_impl.cc 166 uint32_t max_image_size) {
173 max_image_size));
    [all...]
web_contents_impl.h 308 uint32_t max_image_size,
    [all...]

Completed in 682 milliseconds