Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: components/suggestions/image_fetcher.h

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_ 5 #ifndef COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_
6 #define COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_ 6 #define COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/macros.h"
9 #include "components/suggestions/image_fetcher_delegate.h" 10 #include "components/suggestions/image_fetcher_delegate.h"
10 #include "url/gurl.h" 11 #include "url/gurl.h"
11 12
12 class SkBitmap; 13 class SkBitmap;
13 14
14 namespace suggestions { 15 namespace suggestions {
15 16
16 // A class used to fetch server images. 17 // A class used to fetch server images.
17 class ImageFetcher { 18 class ImageFetcher {
18 public: 19 public:
19 ImageFetcher() {} 20 ImageFetcher() {}
20 virtual ~ImageFetcher() {} 21 virtual ~ImageFetcher() {}
21 22
22 virtual void SetImageFetcherDelegate(ImageFetcherDelegate* delegate) = 0; 23 virtual void SetImageFetcherDelegate(ImageFetcherDelegate* delegate) = 0;
23 24
24 virtual void StartOrQueueNetworkRequest( 25 virtual void StartOrQueueNetworkRequest(
25 const GURL& url, const GURL& image_url, 26 const GURL& url, const GURL& image_url,
26 base::Callback<void(const GURL&, const SkBitmap*)> callback) = 0; 27 base::Callback<void(const GURL&, const SkBitmap*)> callback) = 0;
27 28
28 private: 29 private:
29 DISALLOW_COPY_AND_ASSIGN(ImageFetcher); 30 DISALLOW_COPY_AND_ASSIGN(ImageFetcher);
30 }; 31 };
31 32
32 } // namespace suggestions 33 } // namespace suggestions
33 34
34 #endif // COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_ 35 #endif // COMPONENTS_SUGGESTIONS_IMAGE_FETCHER_H_
OLDNEW
« no previous file with comments | « components/suggestions/image_encoder_ios.mm ('k') | components/suggestions/image_fetcher_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698