| OLD | NEW |
| 1 /* | 1 /* |
| 2 * This file is part of the DOM implementation for KDE. | 2 * This file is part of the DOM implementation for KDE. |
| 3 * | 3 * |
| 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 4 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 5 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 6 * (C) 2001 Dirk Mueller (mueller@kde.org) | 6 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 7 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007 Apple Inc. All rights reserved. |
| 8 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 8 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
| 9 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 9 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 10 * | 10 * |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 namespace WebCore { | 37 namespace WebCore { |
| 38 | 38 |
| 39 #ifndef NDEBUG | 39 #ifndef NDEBUG |
| 40 static int gEventDispatchForbidden = 0; | 40 static int gEventDispatchForbidden = 0; |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 EventTarget::~EventTarget() | 43 EventTarget::~EventTarget() |
| 44 { | 44 { |
| 45 } | 45 } |
| 46 | 46 |
| 47 EventTargetNode* EventTarget::toNode() | 47 Node* EventTarget::toNode() |
| 48 { | 48 { |
| 49 return 0; | 49 return 0; |
| 50 } | 50 } |
| 51 | 51 |
| 52 XMLHttpRequest* EventTarget::toXMLHttpRequest() | 52 XMLHttpRequest* EventTarget::toXMLHttpRequest() |
| 53 { | 53 { |
| 54 return 0; | 54 return 0; |
| 55 } | 55 } |
| 56 | 56 |
| 57 XMLHttpRequestUpload* EventTarget::toXMLHttpRequestUpload() | 57 XMLHttpRequestUpload* EventTarget::toXMLHttpRequestUpload() |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 } | 103 } |
| 104 | 104 |
| 105 bool eventDispatchForbidden() | 105 bool eventDispatchForbidden() |
| 106 { | 106 { |
| 107 return gEventDispatchForbidden > 0; | 107 return gEventDispatchForbidden > 0; |
| 108 } | 108 } |
| 109 #endif // NDEBUG | 109 #endif // NDEBUG |
| 110 | 110 |
| 111 } // end namespace | 111 } // end namespace |
| 112 | 112 |
| OLD | NEW |