Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(963)

Side by Side Diff: dom/EventTarget.cpp

Issue 113554: For local review prior to sending to webkit (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « dom/EventTarget.h ('k') | html/HTMLHtmlElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « dom/EventTarget.h ('k') | html/HTMLHtmlElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698