| 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 "core/html/ImageDocument.h" | 25 #include "core/html/ImageDocument.h" |
| 26 | 26 |
| 27 #include <limits> | 27 #include <limits> |
| 28 #include "bindings/core/v8/ExceptionState.h" | 28 #include "bindings/core/v8/ExceptionState.h" |
| 29 #include "core/HTMLNames.h" | 29 #include "core/HTMLNames.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/frame/FrameHost.h" | |
| 34 #include "core/frame/FrameView.h" | 33 #include "core/frame/FrameView.h" |
| 35 #include "core/frame/LocalDOMWindow.h" | 34 #include "core/frame/LocalDOMWindow.h" |
| 36 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
| 37 #include "core/frame/LocalFrameClient.h" | 36 #include "core/frame/LocalFrameClient.h" |
| 38 #include "core/frame/Settings.h" | 37 #include "core/frame/Settings.h" |
| 39 #include "core/frame/UseCounter.h" | 38 #include "core/frame/UseCounter.h" |
| 40 #include "core/frame/VisualViewport.h" | 39 #include "core/frame/VisualViewport.h" |
| 41 #include "core/html/HTMLBodyElement.h" | 40 #include "core/html/HTMLBodyElement.h" |
| 42 #include "core/html/HTMLContentElement.h" | 41 #include "core/html/HTMLContentElement.h" |
| 43 #include "core/html/HTMLDivElement.h" | 42 #include "core/html/HTMLDivElement.h" |
| (...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 } | 622 } |
| 624 | 623 |
| 625 bool ImageEventListener::operator==(const EventListener& listener) const { | 624 bool ImageEventListener::operator==(const EventListener& listener) const { |
| 626 if (const ImageEventListener* imageEventListener = | 625 if (const ImageEventListener* imageEventListener = |
| 627 ImageEventListener::cast(&listener)) | 626 ImageEventListener::cast(&listener)) |
| 628 return m_doc == imageEventListener->m_doc; | 627 return m_doc == imageEventListener->m_doc; |
| 629 return false; | 628 return false; |
| 630 } | 629 } |
| 631 | 630 |
| 632 } // namespace blink | 631 } // namespace blink |
| OLD | NEW |