| 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 ImageResourceContent_h | 5 #ifndef ImageResourceContent_h |
| 6 #define ImageResourceContent_h | 6 #define ImageResourceContent_h |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 9 #include "platform/geometry/IntRect.h" | 10 #include "platform/geometry/IntRect.h" |
| 10 #include "platform/geometry/IntSizeHash.h" | 11 #include "platform/geometry/IntSizeHash.h" |
| 11 #include "platform/geometry/LayoutSize.h" | 12 #include "platform/geometry/LayoutSize.h" |
| 12 #include "platform/graphics/Image.h" | 13 #include "platform/graphics/Image.h" |
| 13 #include "platform/graphics/ImageObserver.h" | 14 #include "platform/graphics/ImageObserver.h" |
| 14 #include "platform/graphics/ImageOrientation.h" | 15 #include "platform/graphics/ImageOrientation.h" |
| 16 #include "platform/loader/fetch/ResourceLoadPriority.h" |
| 15 #include "platform/loader/fetch/ResourceStatus.h" | 17 #include "platform/loader/fetch/ResourceStatus.h" |
| 16 #include "platform/network/ResourceLoadPriority.h" | |
| 17 #include "platform/weborigin/KURL.h" | 18 #include "platform/weborigin/KURL.h" |
| 18 #include "wtf/HashCountedSet.h" | 19 #include "wtf/HashCountedSet.h" |
| 19 #include "wtf/HashMap.h" | 20 #include "wtf/HashMap.h" |
| 20 #include <memory> | |
| 21 | 21 |
| 22 namespace blink { | 22 namespace blink { |
| 23 | 23 |
| 24 class FetchRequest; | 24 class FetchRequest; |
| 25 class ImageResourceInfo; | 25 class ImageResourceInfo; |
| 26 class ImageResourceObserver; | 26 class ImageResourceObserver; |
| 27 class ResourceError; | 27 class ResourceError; |
| 28 class ResourceFetcher; | 28 class ResourceFetcher; |
| 29 class ResourceResponse; | 29 class ResourceResponse; |
| 30 class SecurityOrigin; | 30 class SecurityOrigin; |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 bool m_isRefetchableDataFromDiskCache; | 190 bool m_isRefetchableDataFromDiskCache; |
| 191 | 191 |
| 192 #if DCHECK_IS_ON() | 192 #if DCHECK_IS_ON() |
| 193 bool m_isUpdateImageBeingCalled = false; | 193 bool m_isUpdateImageBeingCalled = false; |
| 194 #endif | 194 #endif |
| 195 }; | 195 }; |
| 196 | 196 |
| 197 } // namespace blink | 197 } // namespace blink |
| 198 | 198 |
| 199 #endif | 199 #endif |
| OLD | NEW |