| 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 25 matching lines...) Expand all Loading... |
| 36 #include "wtf/PassRefPtr.h" | 36 #include "wtf/PassRefPtr.h" |
| 37 | 37 |
| 38 namespace blink { | 38 namespace blink { |
| 39 | 39 |
| 40 class EventListener; | 40 class EventListener; |
| 41 class ExecutiionContext; | 41 class ExecutiionContext; |
| 42 class LocalFrame; | 42 class LocalFrame; |
| 43 class Node; | 43 class Node; |
| 44 class QualifiedName; | 44 class QualifiedName; |
| 45 | 45 |
| 46 RawPtr<V8LazyEventListener> createAttributeEventListener(Node*, const QualifiedN
ame&, const AtomicString& value, const AtomicString& eventParameterName); | 46 V8LazyEventListener* createAttributeEventListener(Node*, const QualifiedName&, c
onst AtomicString& value, const AtomicString& eventParameterName); |
| 47 RawPtr<V8LazyEventListener> createAttributeEventListener(LocalFrame*, const Qual
ifiedName&, const AtomicString& value, const AtomicString& eventParameterName); | 47 V8LazyEventListener* createAttributeEventListener(LocalFrame*, const QualifiedNa
me&, const AtomicString& value, const AtomicString& eventParameterName); |
| 48 v8::Local<v8::Object> eventListenerHandler(ExecutionContext*, EventListener*); | 48 v8::Local<v8::Object> eventListenerHandler(ExecutionContext*, EventListener*); |
| 49 v8::Local<v8::Function> eventListenerEffectiveFunction(v8::Isolate*, v8::Local<v
8::Object> handler); | 49 v8::Local<v8::Function> eventListenerEffectiveFunction(v8::Isolate*, v8::Local<v
8::Object> handler); |
| 50 void getFunctionLocation(v8::Local<v8::Function>, String& scriptId, int& lineNum
ber, int& columnNumber); | 50 void getFunctionLocation(v8::Local<v8::Function>, String& scriptId, int& lineNum
ber, int& columnNumber); |
| 51 | 51 |
| 52 } // namespace blink | 52 } // namespace blink |
| 53 | 53 |
| 54 #endif // ScriptEventListener_h | 54 #endif // ScriptEventListener_h |
| OLD | NEW |