| 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 <memory> |
| 9 #include "core/CoreExport.h" | 9 #include "core/CoreExport.h" |
| 10 #include "platform/geometry/IntRect.h" | 10 #include "platform/geometry/IntRect.h" |
| 11 #include "platform/geometry/IntSizeHash.h" | 11 #include "platform/geometry/IntSizeHash.h" |
| 12 #include "platform/geometry/LayoutSize.h" | 12 #include "platform/geometry/LayoutSize.h" |
| 13 #include "platform/graphics/Image.h" | 13 #include "platform/graphics/Image.h" |
| 14 #include "platform/graphics/ImageObserver.h" | 14 #include "platform/graphics/ImageObserver.h" |
| 15 #include "platform/graphics/ImageOrientation.h" | 15 #include "platform/graphics/ImageOrientation.h" |
| 16 #include "platform/loader/fetch/ResourceLoadPriority.h" | 16 #include "platform/loader/fetch/ResourceLoadPriority.h" |
| 17 #include "platform/loader/fetch/ResourceStatus.h" | 17 #include "platform/loader/fetch/ResourceStatus.h" |
| 18 #include "platform/weborigin/KURL.h" | 18 #include "platform/weborigin/KURL.h" |
| 19 #include "wtf/AutoReset.h" | 19 #include "platform/wtf/AutoReset.h" |
| 20 #include "wtf/HashCountedSet.h" | 20 #include "platform/wtf/HashCountedSet.h" |
| 21 #include "wtf/HashMap.h" | 21 #include "platform/wtf/HashMap.h" |
| 22 | 22 |
| 23 namespace blink { | 23 namespace blink { |
| 24 | 24 |
| 25 class FetchRequest; | 25 class FetchRequest; |
| 26 class ImageResourceInfo; | 26 class ImageResourceInfo; |
| 27 class ImageResourceObserver; | 27 class ImageResourceObserver; |
| 28 class ResourceError; | 28 class ResourceError; |
| 29 class ResourceFetcher; | 29 class ResourceFetcher; |
| 30 class ResourceResponse; | 30 class ResourceResponse; |
| 31 class SecurityOrigin; | 31 class SecurityOrigin; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 mutable bool is_add_remove_observer_prohibited_ = false; | 201 mutable bool is_add_remove_observer_prohibited_ = false; |
| 202 | 202 |
| 203 #if DCHECK_IS_ON() | 203 #if DCHECK_IS_ON() |
| 204 bool is_update_image_being_called_ = false; | 204 bool is_update_image_being_called_ = false; |
| 205 #endif | 205 #endif |
| 206 }; | 206 }; |
| 207 | 207 |
| 208 } // namespace blink | 208 } // namespace blink |
| 209 | 209 |
| 210 #endif | 210 #endif |
| OLD | NEW |