Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: third_party/WebKit/Source/core/loader/ImageLoader.h

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 FetchRequest;
39 class Document; 38 class Document;
40 class Element; 39 class Element;
41 class ImageLoader; 40 class ImageLoader;
42 class LayoutImageResource; 41 class LayoutImageResource;
43 42
44 template <typename T> 43 template <typename T>
45 class EventSender; 44 class EventSender;
46 using ImageEventSender = EventSender<ImageLoader>; 45 using ImageEventSender = EventSender<ImageLoader>;
47 46
48 class CORE_EXPORT ImageLoader : public GarbageCollectedFinalized<ImageLoader>, 47 class CORE_EXPORT ImageLoader : public GarbageCollectedFinalized<ImageLoader>,
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 bool m_hasPendingErrorEvent : 1; 163 bool m_hasPendingErrorEvent : 1;
165 bool m_imageComplete : 1; 164 bool m_imageComplete : 1;
166 bool m_loadingImageDocument : 1; 165 bool m_loadingImageDocument : 1;
167 bool m_elementIsProtected : 1; 166 bool m_elementIsProtected : 1;
168 bool m_suppressErrorEvents : 1; 167 bool m_suppressErrorEvents : 1;
169 }; 168 };
170 169
171 } // namespace blink 170 } // namespace blink
172 171
173 #endif 172 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/FrameLoaderClient.h ('k') | third_party/WebKit/Source/core/loader/MixedContentChecker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698