OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 12 matching lines...) Expand all Loading... |
23 */ | 23 */ |
24 | 24 |
25 #include "config.h" | 25 #include "config.h" |
26 #include "core/html/ImageDocument.h" | 26 #include "core/html/ImageDocument.h" |
27 | 27 |
28 #include "HTMLNames.h" | 28 #include "HTMLNames.h" |
29 #include "bindings/v8/ExceptionStatePlaceholder.h" | 29 #include "bindings/v8/ExceptionStatePlaceholder.h" |
30 #include "core/dom/RawDataDocumentParser.h" | 30 #include "core/dom/RawDataDocumentParser.h" |
31 #include "core/events/EventListener.h" | 31 #include "core/events/EventListener.h" |
32 #include "core/events/MouseEvent.h" | 32 #include "core/events/MouseEvent.h" |
33 #include "core/events/ThreadLocalEventNames.h" | |
34 #include "core/fetch/ImageResource.h" | 33 #include "core/fetch/ImageResource.h" |
35 #include "core/frame/FrameView.h" | 34 #include "core/frame/FrameView.h" |
36 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
37 #include "core/frame/Settings.h" | 36 #include "core/frame/Settings.h" |
38 #include "core/html/HTMLBodyElement.h" | 37 #include "core/html/HTMLBodyElement.h" |
39 #include "core/html/HTMLHeadElement.h" | 38 #include "core/html/HTMLHeadElement.h" |
40 #include "core/html/HTMLHtmlElement.h" | 39 #include "core/html/HTMLHtmlElement.h" |
41 #include "core/html/HTMLImageElement.h" | 40 #include "core/html/HTMLImageElement.h" |
42 #include "core/html/HTMLMetaElement.h" | 41 #include "core/html/HTMLMetaElement.h" |
43 #include "core/loader/DocumentLoader.h" | 42 #include "core/loader/DocumentLoader.h" |
(...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 } | 384 } |
386 | 385 |
387 bool ImageEventListener::operator==(const EventListener& listener) | 386 bool ImageEventListener::operator==(const EventListener& listener) |
388 { | 387 { |
389 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) | 388 if (const ImageEventListener* imageEventListener = ImageEventListener::cast(
&listener)) |
390 return m_doc == imageEventListener->m_doc; | 389 return m_doc == imageEventListener->m_doc; |
391 return false; | 390 return false; |
392 } | 391 } |
393 | 392 |
394 } | 393 } |
OLD | NEW |