| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ | 5 #ifndef COMPONENTS_IMAGE_FETCHER_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ |
| 6 #define COMPONENTS_IMAGE_FETCHER_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ | 6 #define COMPONENTS_IMAGE_FETCHER_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "components/data_use_measurement/core/data_use_user_data.h" | 11 #include "components/data_use_measurement/core/data_use_user_data.h" |
| 12 #include "components/image_fetcher/image_data_fetcher.h" | 12 #include "components/image_fetcher/core/image_data_fetcher.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class TaskRunner; | 15 class TaskRunner; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace net { | 18 namespace net { |
| 19 class URLRequestContextGetter; | 19 class URLRequestContextGetter; |
| 20 } | 20 } |
| 21 | 21 |
| 22 class GURL; | 22 class GURL; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 // The task runner used to decode images if necessary. | 66 // The task runner used to decode images if necessary. |
| 67 const scoped_refptr<base::TaskRunner> task_runner_; | 67 const scoped_refptr<base::TaskRunner> task_runner_; |
| 68 ImageDataFetcher image_data_fetcher_; | 68 ImageDataFetcher image_data_fetcher_; |
| 69 | 69 |
| 70 DISALLOW_COPY_AND_ASSIGN(IOSImageDataFetcherWrapper); | 70 DISALLOW_COPY_AND_ASSIGN(IOSImageDataFetcherWrapper); |
| 71 }; | 71 }; |
| 72 | 72 |
| 73 } // namespace image_fetcher | 73 } // namespace image_fetcher |
| 74 | 74 |
| 75 #endif // COMPONENTS_IMAGE_FETCHER_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ | 75 #endif // COMPONENTS_IMAGE_FETCHER_IOS_IOS_IMAGE_DATA_FETCHER_WRAPPER_H_ |
| OLD | NEW |