OLD | NEW |
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 "net/url_request/url_fetcher_delegate.h" | 17 #include "net/url_request/url_fetcher_delegate.h" |
17 #include "net/url_request/url_request.h" | 18 #include "net/url_request/url_request.h" |
18 #include "url/gurl.h" | 19 #include "url/gurl.h" |
19 | 20 |
20 namespace net { | 21 namespace net { |
21 class URLFetcher; | 22 class URLFetcher; |
22 class URLRequestContextGetter; | 23 class URLRequestContextGetter; |
23 } // namespace net | 24 } // namespace net |
24 | 25 |
25 namespace image_fetcher { | 26 namespace image_fetcher { |
26 | 27 |
27 class ImageDataFetcher : public net::URLFetcherDelegate { | 28 class ImageDataFetcher : public net::URLFetcherDelegate { |
28 public: | 29 public: |
29 using ImageDataFetcherCallback = | 30 using ImageDataFetcherCallback = |
30 base::Callback<void(const std::string& image_data)>; | 31 base::Callback<void(const std::string& image_data, |
| 32 const RequestMetadata& request_metadata)>; |
31 | 33 |
32 using DataUseServiceName = data_use_measurement::DataUseUserData::ServiceName; | 34 using DataUseServiceName = data_use_measurement::DataUseUserData::ServiceName; |
33 | 35 |
34 explicit ImageDataFetcher( | 36 explicit ImageDataFetcher( |
35 net::URLRequestContextGetter* url_request_context_getter); | 37 net::URLRequestContextGetter* url_request_context_getter); |
36 ~ImageDataFetcher() override; | 38 ~ImageDataFetcher() override; |
37 | 39 |
38 // Sets a service name against which to track data usage. | 40 // Sets a service name against which to track data usage. |
39 void SetDataUseServiceName(DataUseServiceName data_use_service_name); | 41 void SetDataUseServiceName(DataUseServiceName data_use_service_name); |
40 | 42 |
(...skipping 29 matching lines...) Expand all Loading... |
70 // get individual URLFetchers and modify their state. Outside of tests this ID | 72 // get individual URLFetchers and modify their state. Outside of tests this ID |
71 // is not used. | 73 // is not used. |
72 int next_url_fetcher_id_; | 74 int next_url_fetcher_id_; |
73 | 75 |
74 DISALLOW_COPY_AND_ASSIGN(ImageDataFetcher); | 76 DISALLOW_COPY_AND_ASSIGN(ImageDataFetcher); |
75 }; | 77 }; |
76 | 78 |
77 } // namespace image_fetcher | 79 } // namespace image_fetcher |
78 | 80 |
79 #endif // COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_ | 81 #endif // COMPONENTS_IMAGE_FETCHER_IMAGE_DATA_FETCHER_H_ |
OLD | NEW |