| 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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 XMLHttpRequest* EventTarget::toXMLHttpRequest() | 57 XMLHttpRequest* EventTarget::toXMLHttpRequest() |
| 58 { | 58 { |
| 59 return 0; | 59 return 0; |
| 60 } | 60 } |
| 61 | 61 |
| 62 XMLHttpRequestUpload* EventTarget::toXMLHttpRequestUpload() | 62 XMLHttpRequestUpload* EventTarget::toXMLHttpRequestUpload() |
| 63 { | 63 { |
| 64 return 0; | 64 return 0; |
| 65 } | 65 } |
| 66 | 66 |
| 67 #if ENABLE(OFFLINE_WEB_APPLICATIONS) | 67 #if ENABLE(OFFLINE_WEB_APPLICATIONS) || ENABLE(APPLICATION_CACHE) |
| 68 DOMApplicationCache* EventTarget::toDOMApplicationCache() | 68 DOMApplicationCache* EventTarget::toDOMApplicationCache() |
| 69 { | 69 { |
| 70 return 0; | 70 return 0; |
| 71 } | 71 } |
| 72 #endif | 72 #endif |
| 73 | 73 |
| 74 #if ENABLE(SVG) | 74 #if ENABLE(SVG) |
| 75 SVGElementInstance* EventTarget::toSVGElementInstance() | 75 SVGElementInstance* EventTarget::toSVGElementInstance() |
| 76 { | 76 { |
| 77 return 0; | 77 return 0; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 107 --gEventDispatchForbidden; | 107 --gEventDispatchForbidden; |
| 108 } | 108 } |
| 109 | 109 |
| 110 bool eventDispatchForbidden() | 110 bool eventDispatchForbidden() |
| 111 { | 111 { |
| 112 return gEventDispatchForbidden > 0; | 112 return gEventDispatchForbidden > 0; |
| 113 } | 113 } |
| 114 #endif // NDEBUG | 114 #endif // NDEBUG |
| 115 | 115 |
| 116 } // end namespace | 116 } // end namespace |
| OLD | NEW |