OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ |
6 #define CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ | 6 #define CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
| 12 #include "base/macros.h" |
10 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
11 #include "content/common/image_downloader/image_downloader.mojom.h" | 14 #include "content/common/image_downloader/image_downloader.mojom.h" |
12 #include "content/public/renderer/render_frame_observer.h" | 15 #include "content/public/renderer/render_frame_observer.h" |
13 #include "mojo/public/cpp/bindings/strong_binding.h" | 16 #include "mojo/public/cpp/bindings/strong_binding.h" |
14 #include "url/gurl.h" | 17 #include "url/gurl.h" |
15 | 18 |
16 class SkBitmap; | 19 class SkBitmap; |
17 | 20 |
18 namespace gfx { | 21 namespace gfx { |
19 class Size; | 22 class Size; |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 82 |
80 // ImageResourceFetchers schedule via FetchImage. | 83 // ImageResourceFetchers schedule via FetchImage. |
81 ImageResourceFetcherList image_fetchers_; | 84 ImageResourceFetcherList image_fetchers_; |
82 | 85 |
83 DISALLOW_COPY_AND_ASSIGN(ImageDownloaderImpl); | 86 DISALLOW_COPY_AND_ASSIGN(ImageDownloaderImpl); |
84 }; | 87 }; |
85 | 88 |
86 } // namespace content | 89 } // namespace content |
87 | 90 |
88 #endif // CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ | 91 #endif // CONTENT_RENDERER_IMAGE_DOWNLOADER_IMAGE_DOWNLOADER_IMPL_H_ |
OLD | NEW |