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