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

Unified Diff: sky/engine/bindings/core/v8/V8EventListener.h

Issue 671173006: Remove lots of machinery related to inline event handlers. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sky/engine/bindings/core/v8/V8ErrorHandler.cpp ('k') | sky/engine/bindings/core/v8/V8EventListener.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/bindings/core/v8/V8EventListener.h
diff --git a/sky/engine/bindings/core/v8/V8EventListener.h b/sky/engine/bindings/core/v8/V8EventListener.h
index 2cd8a9b5bf009fdf04257b973de31ca001d0b34e..4e682b76cc69778f075b67d91ca58ef708a6b371 100644
--- a/sky/engine/bindings/core/v8/V8EventListener.h
+++ b/sky/engine/bindings/core/v8/V8EventListener.h
@@ -44,13 +44,13 @@ class LocalFrame;
// that can handle the event.
class V8EventListener : public V8AbstractEventListener {
public:
- static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, bool isAttribute, ScriptState* scriptState)
+ static PassRefPtr<V8EventListener> create(v8::Local<v8::Object> listener, ScriptState* scriptState)
{
- return adoptRef(new V8EventListener(listener, isAttribute, scriptState));
+ return adoptRef(new V8EventListener(listener, scriptState));
}
protected:
- V8EventListener(v8::Local<v8::Object> listener, bool isAttribute, ScriptState*);
+ V8EventListener(v8::Local<v8::Object> listener, ScriptState*);
v8::Local<v8::Function> getListenerFunction(ExecutionContext*);
« no previous file with comments | « sky/engine/bindings/core/v8/V8ErrorHandler.cpp ('k') | sky/engine/bindings/core/v8/V8EventListener.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698