iOS factories for AboutSigninInternals and AccountReconcilor
[chromium-blink-merge.git] / components / suggestions / image_fetcher.h
blob52fcff4f67da49a4c54ebb44d8c9e3960c17cb18
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 COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_
6 #define COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_
8 #include "base/callback.h"
9 #include "components/suggestions/image_fetcher_delegate.h"
10 #include "url/gurl.h"
12 class SkBitmap;
14 namespace suggestions {
16 // A class used to fetch server images.
17 class ImageFetcher {
18 public:
19 ImageFetcher() {}
20 virtual ~ImageFetcher() {}
22 virtual void SetImageFetcherDelegate(ImageFetcherDelegate* delegate) = 0;
24 virtual void StartOrQueueNetworkRequest(
25 const GURL& url, const GURL& image_url,
26 base::Callback<void(const GURL&, const SkBitmap*)> callback) = 0;
28 private:
29 DISALLOW_COPY_AND_ASSIGN(ImageFetcher);
32 } // namespace suggestions
34 #endif // COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_