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

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

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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/HistoryController.cpp ('k') | Source/core/loader/MixedContentChecker.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 11 matching lines...) Expand all
22 #include "config.h" 22 #include "config.h"
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/events/Event.h" 28 #include "core/events/Event.h"
29 #include "core/events/EventSender.h" 29 #include "core/events/EventSender.h"
30 #include "core/fetch/CrossOriginAccessControl.h" 30 #include "core/fetch/CrossOriginAccessControl.h"
31 #include "core/fetch/FetchRequest.h" 31 #include "core/fetch/FetchRequest.h"
32 #include "core/fetch/ImageResource.h"
33 #include "core/fetch/ResourceFetcher.h" 32 #include "core/fetch/ResourceFetcher.h"
34 #include "core/html/HTMLObjectElement.h" 33 #include "core/html/HTMLObjectElement.h"
35 #include "core/html/parser/HTMLParserIdioms.h" 34 #include "core/html/parser/HTMLParserIdioms.h"
36 #include "core/rendering/RenderImage.h" 35 #include "core/rendering/RenderImage.h"
37 #include "core/rendering/RenderVideo.h" 36 #include "core/rendering/RenderVideo.h"
38 #include "core/rendering/svg/RenderSVGImage.h" 37 #include "core/rendering/svg/RenderSVGImage.h"
39 #include "platform/weborigin/SecurityOrigin.h" 38 #include "platform/weborigin/SecurityOrigin.h"
40 39
41 namespace WebCore { 40 namespace WebCore {
42 41
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 handle->notifyImageSourceChanged(); 475 handle->notifyImageSourceChanged();
477 } 476 }
478 } 477 }
479 478
480 inline void ImageLoader::clearFailedLoadURL() 479 inline void ImageLoader::clearFailedLoadURL()
481 { 480 {
482 m_failedLoadURL = AtomicString(); 481 m_failedLoadURL = AtomicString();
483 } 482 }
484 483
485 } 484 }
OLDNEW
« no previous file with comments | « Source/core/loader/HistoryController.cpp ('k') | Source/core/loader/MixedContentChecker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698