| 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, 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |