| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2004, 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2004, 2009 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "core/fetch/ImageResourceObserver.h" | 28 #include "core/fetch/ImageResourceObserver.h" |
| 29 #include "platform/heap/Handle.h" | 29 #include "platform/heap/Handle.h" |
| 30 #include "wtf/HashSet.h" | 30 #include "wtf/HashSet.h" |
| 31 #include "wtf/WeakPtr.h" | 31 #include "wtf/WeakPtr.h" |
| 32 #include "wtf/text/AtomicString.h" | 32 #include "wtf/text/AtomicString.h" |
| 33 #include <memory> | 33 #include <memory> |
| 34 | 34 |
| 35 namespace blink { | 35 namespace blink { |
| 36 | 36 |
| 37 class IncrementLoadEventDelayCount; | 37 class IncrementLoadEventDelayCount; |
| 38 class Document; | |
| 39 class Element; | 38 class Element; |
| 40 class ImageLoader; | 39 class ImageLoader; |
| 41 class LayoutImageResource; | 40 class LayoutImageResource; |
| 42 | 41 |
| 43 template <typename T> | 42 template <typename T> |
| 44 class EventSender; | 43 class EventSender; |
| 45 using ImageEventSender = EventSender<ImageLoader>; | 44 using ImageEventSender = EventSender<ImageLoader>; |
| 46 | 45 |
| 47 class CORE_EXPORT ImageLoader : public GarbageCollectedFinalized<ImageLoader>, | 46 class CORE_EXPORT ImageLoader : public GarbageCollectedFinalized<ImageLoader>, |
| 48 public ImageResourceObserver { | 47 public ImageResourceObserver { |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 bool m_hasPendingErrorEvent : 1; | 162 bool m_hasPendingErrorEvent : 1; |
| 164 bool m_imageComplete : 1; | 163 bool m_imageComplete : 1; |
| 165 bool m_loadingImageDocument : 1; | 164 bool m_loadingImageDocument : 1; |
| 166 bool m_elementIsProtected : 1; | 165 bool m_elementIsProtected : 1; |
| 167 bool m_suppressErrorEvents : 1; | 166 bool m_suppressErrorEvents : 1; |
| 168 }; | 167 }; |
| 169 | 168 |
| 170 } // namespace blink | 169 } // namespace blink |
| 171 | 170 |
| 172 #endif | 171 #endif |
| OLD | NEW |