blob: bcaa44326de4bb407c19c0cc61a555e4dc0f639a [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module content.mojom;
import "skia/public/interfaces/bitmap.mojom";
import "ui/mojo/geometry/geometry.mojom";
interface ImageDownloader {
// Fetch and decode an image from a given URL.
// Returns the decoded images, or http_status_code to indicate error.
// Each call is independent, overlapping calls are possible.
DownloadImage(string url,
bool is_favicon,
uint32 max_bitmap_size,
bool bypass_cache)
=> (int32 http_status_code,
array<skia.Bitmap> images,
array<mojo.Size> original_image_sizes);
};