OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 bool hasExistingListenerObject() | 102 bool hasExistingListenerObject() |
103 { | 103 { |
104 return !m_listener.isEmpty(); | 104 return !m_listener.isEmpty(); |
105 } | 105 } |
106 | 106 |
107 void clearListenerObject() | 107 void clearListenerObject() |
108 { | 108 { |
109 m_listener.clear(); | 109 m_listener.clear(); |
110 } | 110 } |
111 | 111 |
112 DOMWrapperWorld* world() const { return m_world.get(); } | 112 virtual DOMWrapperWorld* world() const OVERRIDE FINAL { return m_world.g
et(); } |
113 | 113 |
114 protected: | 114 protected: |
115 V8AbstractEventListener(bool isAttribute, PassRefPtr<DOMWrapperWorld>, v
8::Isolate*); | 115 V8AbstractEventListener(bool isAttribute, PassRefPtr<DOMWrapperWorld>, v
8::Isolate*); |
116 | 116 |
117 virtual void prepareListenerObject(ScriptExecutionContext*) { } | 117 virtual void prepareListenerObject(ScriptExecutionContext*) { } |
118 | 118 |
119 void setListenerObject(v8::Handle<v8::Object> listener); | 119 void setListenerObject(v8::Handle<v8::Object> listener); |
120 | 120 |
121 void invokeEventHandler(ScriptExecutionContext*, Event*, v8::Local<v8::V
alue> jsEvent); | 121 void invokeEventHandler(ScriptExecutionContext*, Event*, v8::Local<v8::V
alue> jsEvent); |
122 | 122 |
(...skipping 15 matching lines...) Expand all Loading... |
138 // Indicates if this is an HTML type listener. | 138 // Indicates if this is an HTML type listener. |
139 bool m_isAttribute; | 139 bool m_isAttribute; |
140 | 140 |
141 RefPtr<DOMWrapperWorld> m_world; | 141 RefPtr<DOMWrapperWorld> m_world; |
142 v8::Isolate* m_isolate; | 142 v8::Isolate* m_isolate; |
143 }; | 143 }; |
144 | 144 |
145 } // namespace WebCore | 145 } // namespace WebCore |
146 | 146 |
147 #endif // V8AbstractEventListener_h | 147 #endif // V8AbstractEventListener_h |
OLD | NEW |