| OLD | NEW |
| 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 CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ | 5 #ifndef CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ |
| 6 #define CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ | 6 #define CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_delegate.h" | 11 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_delegate.h" |
| 12 #include "chrome/browser/image_decoder.h" | 12 #include "components/image_fetcher/content/image_decoder.h" |
| 13 #include "net/traffic_annotation/network_traffic_annotation.h" | 13 #include "net/traffic_annotation/network_traffic_annotation.h" |
| 14 #include "net/url_request/url_fetcher_delegate.h" | 14 #include "net/url_request/url_fetcher_delegate.h" |
| 15 #include "net/url_request/url_request.h" | 15 #include "net/url_request/url_request.h" |
| 16 #include "url/gurl.h" | 16 #include "url/gurl.h" |
| 17 | 17 |
| 18 class SkBitmap; | 18 class SkBitmap; |
| 19 | 19 |
| 20 namespace net { | 20 namespace net { |
| 21 class URLFetcher; | 21 class URLFetcher; |
| 22 class URLRequestContextGetter; | 22 class URLRequestContextGetter; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 const GURL url_; | 78 const GURL url_; |
| 79 BitmapFetcherDelegate* const delegate_; | 79 BitmapFetcherDelegate* const delegate_; |
| 80 const net::NetworkTrafficAnnotationTag traffic_annotation_; | 80 const net::NetworkTrafficAnnotationTag traffic_annotation_; |
| 81 | 81 |
| 82 DISALLOW_COPY_AND_ASSIGN(BitmapFetcher); | 82 DISALLOW_COPY_AND_ASSIGN(BitmapFetcher); |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace chrome | 85 } // namespace chrome |
| 86 | 86 |
| 87 #endif // CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ | 87 #endif // CHROME_BROWSER_BITMAP_FETCHER_BITMAP_FETCHER_H_ |
| OLD | NEW |