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

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

Issue 2677993002: Use IOSImageDataFetcherWrapper for favicon (Closed)
Patch Set: Actually adding the header Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_ 5 #ifndef COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_
6 #define COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_ 6 #define COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
11 11
12 #include "base/callback.h" 12 #include "base/callback.h"
13 #include "base/macros.h" 13 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "components/data_use_measurement/core/data_use_user_data.h" 15 #include "components/data_use_measurement/core/data_use_user_data.h"
16 #include "components/image_fetcher/request_metadata.h" 16 #include "components/image_fetcher/request_metadata.h"
17 #include "net/url_request/url_fetcher.h"
17 #include "net/url_request/url_fetcher_delegate.h" 18 #include "net/url_request/url_fetcher_delegate.h"
18 #include "net/url_request/url_request.h" 19 #include "net/url_request/url_request.h"
19 #include "url/gurl.h" 20 #include "url/gurl.h"
20 21
21 namespace net { 22 namespace net {
22 class URLFetcher; 23 class URLFetcher;
23 class URLRequestContextGetter; 24 class URLRequestContextGetter;
24 } // namespace net 25 } // namespace net
25 26
26 namespace image_fetcher { 27 namespace image_fetcher {
27 28
28 class ImageDataFetcher : public net::URLFetcherDelegate { 29 class ImageDataFetcher : public net::URLFetcherDelegate {
29 public: 30 public:
31 // Impossible http response code. Used to signal that no http response code
32 // was received.
33 enum ResponseCode {
34 RESPONSE_CODE_INVALID = net::URLFetcher::RESPONSE_CODE_INVALID
35 };
36
37 // Callback with the |image_data|. If an error prevented a http response,
38 // |request_metadata.response_code| will be RESPONSE_CODE_INVALID.
30 using ImageDataFetcherCallback = 39 using ImageDataFetcherCallback =
31 base::Callback<void(const std::string& image_data, 40 base::Callback<void(const std::string& image_data,
32 const RequestMetadata& request_metadata)>; 41 const RequestMetadata& request_metadata)>;
33 42
34 using DataUseServiceName = data_use_measurement::DataUseUserData::ServiceName; 43 using DataUseServiceName = data_use_measurement::DataUseUserData::ServiceName;
35 44
36 explicit ImageDataFetcher( 45 explicit ImageDataFetcher(
37 net::URLRequestContextGetter* url_request_context_getter); 46 net::URLRequestContextGetter* url_request_context_getter);
38 ~ImageDataFetcher() override; 47 ~ImageDataFetcher() override;
39 48
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 // get individual URLFetchers and modify their state. Outside of tests this ID 81 // get individual URLFetchers and modify their state. Outside of tests this ID
73 // is not used. 82 // is not used.
74 int next_url_fetcher_id_; 83 int next_url_fetcher_id_;
75 84
76 DISALLOW_COPY_AND_ASSIGN(ImageDataFetcher); 85 DISALLOW_COPY_AND_ASSIGN(ImageDataFetcher);
77 }; 86 };
78 87
79 } // namespace image_fetcher 88 } // namespace image_fetcher
80 89
81 #endif // COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_ 90 #endif // COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_
OLDNEW
« no previous file with comments | « components/favicon/ios/web_favicon_driver.mm ('k') | components/image_fetcher/image_data_fetcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698