Index: chrome/browser/extensions/extension_event_router.h |
diff --git a/chrome/browser/extensions/extension_event_router.h b/chrome/browser/extensions/extension_event_router.h |
index 42a649cfd9a77c7c128f3724cacc9f15ca652cbd..91767b298593f3a33c6a8c4f53e2963564b46ce0 100644 |
--- a/chrome/browser/extensions/extension_event_router.h |
+++ b/chrome/browser/extensions/extension_event_router.h |
@@ -13,6 +13,8 @@ |
#include "base/compiler_specific.h" |
#include "base/memory/linked_ptr.h" |
#include "base/memory/ref_counted.h" |
+#include "chrome/browser/extensions/event_listener_map.h" |
+#include "chrome/common/extensions/event_filtering_info.h" |
#include "content/public/browser/notification_observer.h" |
#include "content/public/browser/notification_registrar.h" |
#include "ipc/ipc_message.h" |
@@ -22,6 +24,10 @@ class ExtensionHost; |
class ExtensionDevToolsManager; |
class Profile; |
+namespace base { |
+class DictionaryValue; |
+} |
+ |
namespace content { |
class RenderProcessHost; |
} |
@@ -30,7 +36,14 @@ namespace extensions { |
class Extension; |
} |
-class ExtensionEventRouter : public content::NotificationObserver { |
+struct ExtensionEvent; |
+ |
+using extensions::EventFilteringInfo; |
+using extensions::EventListener; |
+using extensions::EventListenerMap; |
+ |
+class ExtensionEventRouter : public content::NotificationObserver, |
+ public extensions::EventListenerMap::Delegate { |
public: |
// These constants convey the state of our knowledge of whether we're in |
// a user-caused gesture as part of DispatchEvent. |
@@ -47,7 +60,8 @@ class ExtensionEventRouter : public content::NotificationObserver { |
const std::string& event_name, |
const std::string& event_args, |
const GURL& event_url, |
- UserGestureState user_gesture); |
+ UserGestureState user_gesture, |
+ const extensions::EventFilteringInfo& info); |
explicit ExtensionEventRouter(Profile* profile); |
virtual ~ExtensionEventRouter(); |
@@ -72,6 +86,21 @@ class ExtensionEventRouter : public content::NotificationObserver { |
void RemoveLazyEventListener(const std::string& event_name, |
const std::string& extension_id); |
+ // If |add_lazy_listener| is true also add the lazy version of this listener. |
+ void AddFilteredEventListener(const std::string& event_name, |
+ content::RenderProcessHost* process, |
+ const std::string& extension_id, |
+ const base::DictionaryValue& filter, |
+ bool add_lazy_listener); |
+ |
+ // If |remove_lazy_listener| is true also remove the lazy version of this |
+ // listener. |
+ void RemoveFilteredEventListener(const std::string& event_name, |
+ content::RenderProcessHost* process, |
+ const std::string& extension_id, |
+ const base::DictionaryValue& filter, |
+ bool remove_lazy_listener); |
+ |
// Returns true if there is at least one listener for the given event. |
bool HasEventListener(const std::string& event_name); |
@@ -89,7 +118,8 @@ class ExtensionEventRouter : public content::NotificationObserver { |
const std::string& event_name, |
const std::string& event_args, |
Profile* restrict_to_profile, |
- const GURL& event_url); |
+ const GURL& event_url, |
+ extensions::EventFilteringInfo info); |
// Same as above, except only send the event to the given extension. |
virtual void DispatchEventToExtension( |
@@ -127,9 +157,6 @@ class ExtensionEventRouter : public content::NotificationObserver { |
void OnEventAck(Profile* profile, const std::string& extension_id); |
private: |
- // The details of an event to be dispatched. |
- struct ExtensionEvent; |
- |
// The extension and process that contains the event listener for a given |
// event. |
struct ListenerProcess; |
@@ -153,12 +180,18 @@ class ExtensionEventRouter : public content::NotificationObserver { |
// broadcast. If |process| is non-NULL, the event is only dispatched to that |
// particular process. |
// An event that just came off the pending list may not be delayed again. |
- void DispatchEventImpl(const std::string& extension_id, |
+ void DispatchEventImpl(const std::string& restrict_to_extension_id, |
+ const linked_ptr<ExtensionEvent>& event); |
+ |
+ // Ensures that all lazy background pages that are interested in the given |
+ // event are loaded, and queues the event if the page is not ready yet. |
+ void DispatchLazyEvent(const std::string& extension_id, |
const linked_ptr<ExtensionEvent>& event); |
- // Dispatches the event to a single listener process. |
- void DispatchEventToListener(const ListenerProcess& listener, |
- const linked_ptr<ExtensionEvent>& event); |
+ // Dispatches the event to the specified extension running in |process|. |
+ void DispatchEventToProcess(const std::string& extension_id, |
+ content::RenderProcessHost* process, |
+ const linked_ptr<ExtensionEvent>& event); |
// Returns false when the event is scoped to a profile and the listening |
// extension does not have access to events from that profile. Also fills |
@@ -170,20 +203,13 @@ class ExtensionEventRouter : public content::NotificationObserver { |
const linked_ptr<ExtensionEvent>& event, |
const std::string** event_args); |
- // Ensures that all lazy background pages that are interested in the given |
- // event are loaded, and queues the event if the page is not ready yet. |
- // If |extension_id| is non-empty, we load only that extension's page |
- // (assuming it is interested in the event). |
- void LoadLazyBackgroundPagesForEvent( |
- const std::string& extension_id, |
- const linked_ptr<ExtensionEvent>& event); |
- |
// Possibly loads given extension's background page in preparation to |
// dispatch an event. |
void MaybeLoadLazyBackgroundPage( |
Profile* profile, |
const extensions::Extension* extension, |
- const linked_ptr<ExtensionEvent>& event); |
+ const linked_ptr<ExtensionEvent>& event, |
+ const std::string& extension_id); |
// Track of the number of dispatched events that have not yet sent an |
// ACK from the renderer. |
@@ -193,21 +219,38 @@ class ExtensionEventRouter : public content::NotificationObserver { |
void DispatchPendingEvent(const linked_ptr<ExtensionEvent>& event, |
ExtensionHost* host); |
+ void OnListenerAdded(const EventListener* listener) OVERRIDE; |
+ void OnListenerRemoved(const EventListener* listener) OVERRIDE; |
+ |
Profile* profile_; |
content::NotificationRegistrar registrar_; |
scoped_refptr<ExtensionDevToolsManager> extension_devtools_manager_; |
- // The list of active extension processes that are listening to events. |
- ListenerMap listeners_; |
- |
- // The list of all the lazy (non-persistent) background pages that are |
- // listening to events. This is just a cache of the real list, which is |
- // stored on disk in the extension prefs. |
- ListenerMap lazy_listeners_; |
+ EventListenerMap listeners_; |
DISALLOW_COPY_AND_ASSIGN(ExtensionEventRouter); |
}; |
+struct ExtensionEvent { |
+ std::string event_name; |
+ std::string event_args; |
+ GURL event_url; |
+ Profile* restrict_to_profile; |
+ std::string cross_incognito_args; |
+ ExtensionEventRouter::UserGestureState user_gesture; |
+ extensions::EventFilteringInfo info; |
+ |
+ ExtensionEvent(const std::string& event_name, |
+ const std::string& event_args, |
+ const GURL& event_url, |
+ Profile* restrict_to_profile, |
+ const std::string& cross_incognito_args, |
+ ExtensionEventRouter::UserGestureState user_gesture, |
+ const extensions::EventFilteringInfo& info); |
+ ~ExtensionEvent(); |
+}; |
+ |
+ |
#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_EVENT_ROUTER_H_ |