HomeSort by relevance Sort by last modified time
    Searched refs:EventBindings (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/extensions/renderer/
event_bindings.h 22 class EventBindings : public ObjectBackedNativeHandler {
24 EventBindings(Dispatcher* dispatcher, ScriptContext* context);
25 virtual ~EventBindings();
event_bindings.cc 118 EventBindings::EventBindings(Dispatcher* dispatcher, ScriptContext* context)
122 base::Bind(&EventBindings::AttachEvent, base::Unretained(this)));
125 base::Bind(&EventBindings::DetachEvent, base::Unretained(this)));
128 base::Bind(&EventBindings::AttachFilteredEvent, base::Unretained(this)));
131 base::Bind(&EventBindings::DetachFilteredEvent, base::Unretained(this)));
133 base::Bind(&EventBindings::MatchAgainstEventFilter,
137 EventBindings::~EventBindings() {}
140 void EventBindings::AttachEvent
    [all...]
dispatcher.cc     [all...]
  /external/chromium_org/chrome/renderer/resources/extensions/
webview_custom_bindings.js 13 var EventBindings = require('event_bindings');
27 webviewContextMenus.event = new EventBindings.Event(ename);
web_view_experimental.js 14 var EventBindings = require('event_bindings');
78 EventBindings.Event.call(this, subEventName, opt_argSchemas, opt_eventOptions,
90 __proto__: EventBindings.Event.prototype
web_view_events.js 9 var EventBindings = require('event_bindings');
19 return new EventBindings.Event(name, undefined, eventOpts);
155 EventBindings.Event.call(this, subEventName, opt_argSchemas, opt_eventOptions,
167 __proto__: EventBindings.Event.prototype
220 DeclarativeWebRequestEvent : EventBindings.Event;

Completed in 1030 milliseconds