OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 */ | 29 */ |
30 | 30 |
31 #ifndef ScriptEventListener_h | 31 #ifndef ScriptEventListener_h |
32 #define ScriptEventListener_h | 32 #define ScriptEventListener_h |
33 | 33 |
34 #include "bindings/v8/ScriptValue.h" | 34 #include "bindings/v8/ScriptValue.h" |
35 #include "bindings/v8/V8LazyEventListener.h" | 35 #include "bindings/v8/V8LazyEventListener.h" |
36 | |
37 #include "wtf/PassRefPtr.h" | 36 #include "wtf/PassRefPtr.h" |
38 | 37 |
39 namespace WebCore { | 38 namespace WebCore { |
40 | 39 |
41 class Document; | 40 class Document; |
42 class EventListener; | 41 class EventListener; |
43 class LocalFrame; | 42 class LocalFrame; |
44 class Node; | 43 class Node; |
45 class QualifiedName; | 44 class QualifiedName; |
46 | 45 |
47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, const Qu
alifiedName&, const AtomicString& value); | 46 PassRefPtr<V8LazyEventListener> createAttributeEventListener(Node*, const Qu
alifiedName&, const AtomicString& value); |
48 PassRefPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, co
nst QualifiedName&, const AtomicString& value); | 47 PassRefPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, co
nst QualifiedName&, const AtomicString& value); |
49 String eventListenerHandlerBody(Document*, EventListener*); | 48 String eventListenerHandlerBody(Document*, EventListener*); |
50 ScriptValue eventListenerHandler(Document*, EventListener*); | 49 ScriptValue eventListenerHandler(Document*, EventListener*); |
51 ScriptState* eventListenerHandlerScriptState(LocalFrame*, EventListener*); | 50 ScriptState* eventListenerHandlerScriptState(LocalFrame*, EventListener*); |
52 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceN
ame, String& scriptId, int& lineNumber); | 51 bool eventListenerHandlerLocation(Document*, EventListener*, String& sourceN
ame, String& scriptId, int& lineNumber); |
53 | 52 |
54 } // namespace WebCore | 53 } // namespace WebCore |
55 | 54 |
56 #endif // ScriptEventListener_h | 55 #endif // ScriptEventListener_h |
OLD | NEW |