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

Side by Side Diff: Source/core/loader/ImageLoader.cpp

Issue 16282004: Remove unused includes from various .cpp files in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: re-add HTMLFormElement to EmptyClients for windows Created 7 years, 6 months 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
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/loader/LinkLoader.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed. 4 * Copyright (C) 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. All rights reserv ed.
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 12 matching lines...) Expand all
23 #include "core/loader/ImageLoader.h" 23 #include "core/loader/ImageLoader.h"
24 24
25 #include "HTMLNames.h" 25 #include "HTMLNames.h"
26 #include "core/dom/Document.h" 26 #include "core/dom/Document.h"
27 #include "core/dom/Element.h" 27 #include "core/dom/Element.h"
28 #include "core/dom/Event.h" 28 #include "core/dom/Event.h"
29 #include "core/dom/EventSender.h" 29 #include "core/dom/EventSender.h"
30 #include "core/dom/WebCoreMemoryInstrumentation.h" 30 #include "core/dom/WebCoreMemoryInstrumentation.h"
31 #include "core/html/HTMLObjectElement.h" 31 #include "core/html/HTMLObjectElement.h"
32 #include "core/html/parser/HTMLParserIdioms.h" 32 #include "core/html/parser/HTMLParserIdioms.h"
33 #include "core/inspector/ScriptCallStack.h"
34 #include "core/loader/CrossOriginAccessControl.h" 33 #include "core/loader/CrossOriginAccessControl.h"
35 #include "core/loader/cache/CachedImage.h" 34 #include "core/loader/cache/CachedImage.h"
36 #include "core/loader/cache/CachedResourceLoader.h" 35 #include "core/loader/cache/CachedResourceLoader.h"
37 #include "core/loader/cache/CachedResourceRequest.h" 36 #include "core/loader/cache/CachedResourceRequest.h"
38 #include "core/page/Frame.h" 37 #include "core/page/Frame.h"
39 #include "core/rendering/RenderImage.h" 38 #include "core/rendering/RenderImage.h"
40 #include "core/rendering/RenderVideo.h" 39 #include "core/rendering/RenderVideo.h"
41 #include "core/rendering/svg/RenderSVGImage.h" 40 #include "core/rendering/svg/RenderSVGImage.h"
42 #include "weborigin/SecurityOrigin.h" 41 #include "weborigin/SecurityOrigin.h"
43 42
(...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 void ImageLoader::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const 470 void ImageLoader::reportMemoryUsage(MemoryObjectInfo* memoryObjectInfo) const
472 { 471 {
473 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Image); 472 MemoryClassInfo info(memoryObjectInfo, this, WebCoreMemoryTypes::Image);
474 info.addMember(m_element, "element"); 473 info.addMember(m_element, "element");
475 info.addMember(m_image.get(), "image", WTF::RetainingPointer); 474 info.addMember(m_image.get(), "image", WTF::RetainingPointer);
476 info.addMember(m_derefElementTimer, "derefElementTimer"); 475 info.addMember(m_derefElementTimer, "derefElementTimer");
477 info.addMember(m_failedLoadURL, "failedLoadURL"); 476 info.addMember(m_failedLoadURL, "failedLoadURL");
478 } 477 }
479 478
480 } 479 }
OLDNEW
« no previous file with comments | « Source/core/loader/FormSubmission.cpp ('k') | Source/core/loader/LinkLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698