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

Side by Side Diff: third_party/WebKit/WebCore/dom/EventTarget.cpp

Issue 21165: Revert the merge. Mac build is mysteriously broken. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | Annotate | Revision Log
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 26 matching lines...) Expand all
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 Node* EventTarget::toNode() 47 EventTargetNode* 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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/WebCore/dom/EventTarget.h ('k') | third_party/WebKit/WebCore/dom/EventTarget.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698