1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_IMAGE_HOLDER_H_
6 #define CHROME_BROWSER_IMAGE_HOLDER_H_
8 #include "base/memory/scoped_vector.h"
9 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher.h"
10 #include "ui/gfx/image/image.h"
11 #include "ui/gfx/image/image_skia.h"
18 // This provides a callback so the ImageHolder can inform its parent when a
20 class ImageHolderDelegate
{
22 virtual void OnFetchComplete() = 0;
25 // This class encapsulates the action of fetching a bitmap, reporting when it is
26 // fetched, and holding onto the bitmap until no longer needed.
27 class ImageHolder
: public chrome::BitmapFetcherDelegate
{
29 ImageHolder(const GURL
& low_dpi_url
,
30 const GURL
& high_dpi_url
,
32 ImageHolderDelegate
* delegate
);
33 ~ImageHolder() override
;
35 // Begin fetching of the URLs we have.
38 // Check whether we have a response from the server for these resources,
39 // even if the response is a failed fetch.
40 bool IsFetchingDone() const;
42 // Inherited from BitmapFetcherDelegate
43 void OnFetchComplete(const GURL
& url
, const SkBitmap
* bitmap
) override
;
46 GURL
low_dpi_url() const { return low_dpi_url_
; }
47 GURL
high_dpi_url() const { return high_dpi_url_
; }
48 gfx::Image
low_dpi_image() { return gfx::Image(image_
); }
51 // Helper function to create a bitmap fetcher (but not start the fetch).
52 void CreateBitmapFetcher(const GURL
& url
);
56 bool low_dpi_fetched_
;
57 bool high_dpi_fetched_
;
58 gfx::ImageSkia image_
;
59 ImageHolderDelegate
* delegate_
;
60 ScopedVector
<chrome::BitmapFetcher
> fetchers_
;
63 FRIEND_TEST_ALL_PREFIXES(ImageHolderTest
, CreateBitmapFetcherTest
);
64 FRIEND_TEST_ALL_PREFIXES(ImageHolderTest
, OnFetchCompleteTest
);
65 FRIEND_TEST_ALL_PREFIXES(ImageHolderTest
, IsFetchingDoneTest
);
67 DISALLOW_COPY_AND_ASSIGN(ImageHolder
);
70 } // namespace chrome.
72 #endif // CHROME_BROWSER_IMAGE_HOLDER_H_