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

Side by Side Diff: dom/EventTarget.h

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 | « bindings/v8/custom/V8DOMApplicationCacheCustom.cpp ('k') | dom/EventTarget.cpp » ('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 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller (mueller@kde.org) 4 * (C) 2001 Dirk Mueller (mueller@kde.org)
5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. 5 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org) 6 * Copyright (C) 2006 Alexey Proskuryakov (ap@webkit.org)
7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 7 * (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 52
53 typedef int ExceptionCode; 53 typedef int ExceptionCode;
54 54
55 class EventTarget { 55 class EventTarget {
56 public: 56 public:
57 virtual MessagePort* toMessagePort(); 57 virtual MessagePort* toMessagePort();
58 virtual Node* toNode(); 58 virtual Node* toNode();
59 virtual DOMWindow* toDOMWindow(); 59 virtual DOMWindow* toDOMWindow();
60 virtual XMLHttpRequest* toXMLHttpRequest(); 60 virtual XMLHttpRequest* toXMLHttpRequest();
61 virtual XMLHttpRequestUpload* toXMLHttpRequestUpload(); 61 virtual XMLHttpRequestUpload* toXMLHttpRequestUpload();
62 #if ENABLE(OFFLINE_WEB_APPLICATIONS) 62 #if ENABLE(OFFLINE_WEB_APPLICATIONS) || ENABLE(APPLICATION_CACHE)
63 virtual DOMApplicationCache* toDOMApplicationCache(); 63 virtual DOMApplicationCache* toDOMApplicationCache();
64 #endif 64 #endif
65 #if ENABLE(SVG) 65 #if ENABLE(SVG)
66 virtual SVGElementInstance* toSVGElementInstance(); 66 virtual SVGElementInstance* toSVGElementInstance();
67 #endif 67 #endif
68 #if ENABLE(WORKERS) 68 #if ENABLE(WORKERS)
69 virtual Worker* toWorker(); 69 virtual Worker* toWorker();
70 virtual WorkerContext* toWorkerContext(); 70 virtual WorkerContext* toWorkerContext();
71 #endif 71 #endif
72 72
(...skipping 25 matching lines...) Expand all
98 #ifndef NDEBUG 98 #ifndef NDEBUG
99 bool eventDispatchForbidden(); 99 bool eventDispatchForbidden();
100 #else 100 #else
101 inline void forbidEventDispatch() { } 101 inline void forbidEventDispatch() { }
102 inline void allowEventDispatch() { } 102 inline void allowEventDispatch() { }
103 #endif 103 #endif
104 104
105 } 105 }
106 106
107 #endif 107 #endif
OLDNEW
« no previous file with comments | « bindings/v8/custom/V8DOMApplicationCacheCustom.cpp ('k') | dom/EventTarget.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698