Chromium Code Reviews| Index: extensions/renderer/event_bindings.h |
| diff --git a/extensions/renderer/event_bindings.h b/extensions/renderer/event_bindings.h |
| index 0f69cd36edf4f6af562c102a3660d16b21e9a154..3dd5f59b2b226b7c6ab9330ae40bedf3e6c1c68c 100644 |
| --- a/extensions/renderer/event_bindings.h |
| +++ b/extensions/renderer/event_bindings.h |
| @@ -5,6 +5,8 @@ |
| #ifndef EXTENSIONS_RENDERER_EVENT_BINDINGS_H_ |
| #define EXTENSIONS_RENDERER_EVENT_BINDINGS_H_ |
| +#include <set> |
| + |
| #include "extensions/renderer/object_backed_native_handler.h" |
| #include "v8/include/v8.h" |
| @@ -25,16 +27,25 @@ class EventBindings : public ObjectBackedNativeHandler { |
| ~EventBindings() override; |
| private: |
| + // JavaScript handler which forwards to AttachEvent(). |
| + // args[0] forwards to |event_name|. |
| + void AttachEventHandler(const v8::FunctionCallbackInfo<v8::Value>& args); |
| + |
| // Attach an event name to an object. |
| // |event_name| The name of the event to attach. |
| - void AttachEvent(const v8::FunctionCallbackInfo<v8::Value>& args); |
| + void AttachEvent(const std::string& event_name); |
| - // Detach an event name from an object. |
| + // JavaScript handler which forwards to DetachEvent(). |
| + // args[0] forwards to |event_name|. |
| + // args[1] forwards to |is_manual|. |
| + void DetachEventHandler(const v8::FunctionCallbackInfo<v8::Value>& args); |
| + |
| + // Detaches an event name from an object. |
| // |event_name| The name of the event to stop listening to. |
| // |is_manual| True if this detach was done by the user via removeListener() |
| // as opposed to automatically during shutdown, in which case we should inform |
| // the browser we are no longer interested in that event. |
| - void DetachEvent(const v8::FunctionCallbackInfo<v8::Value>& args); |
| + void DetachEvent(const std::string& event_name, bool is_manual); |
| // MatcherID AttachFilteredEvent(string event_name, object filter) |
| // |event_name| Name of the event to attach. |
| @@ -51,9 +62,17 @@ class EventBindings : public ObjectBackedNativeHandler { |
| void MatchAgainstEventFilter(const v8::FunctionCallbackInfo<v8::Value>& args); |
| - Dispatcher* dispatcher_; |
| scoped_ptr<EventMatcher> ParseEventMatcher( |
| base::DictionaryValue* filter_dict); |
| + |
| + // Called when our context, and therefore us, is invalidated. Run any cleanup. |
| + void OnInvalidated(); |
| + |
| + // The set of attached events. Maintain this so that we can detch them on |
| + // unload. |
| + std::set<std::string> attached_event_names_; |
| + |
| + Dispatcher* dispatcher_; |
|
Devlin
2015/04/10 18:10:40
DISALLOW_COPY_AND_ASSIGN() (not sure why it was ne
not at google - send to devlin
2015/04/10 18:39:01
Done.
|
| }; |
| } // namespace extensions |