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

Unified Diff: extensions/browser/event_listener_map.h

Issue 2943583002: [extension SW] Support lazy events from extension service workers. (Closed)
Patch Set: sync @tott Created 3 years, 6 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 | « extensions/browser/BUILD.gn ('k') | extensions/browser/event_listener_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/event_listener_map.h
diff --git a/extensions/browser/event_listener_map.h b/extensions/browser/event_listener_map.h
index ea25ea6b433561dbdd8d8e4954e6f9eb6368eb6a..5bebe7ccb10e9d6feb3244253fd86b49f99fe162 100644
--- a/extensions/browser/event_listener_map.h
+++ b/extensions/browser/event_listener_map.h
@@ -67,6 +67,7 @@ class EventListener {
const std::string& event_name,
const std::string& extension_id,
content::RenderProcessHost* process,
+ const GURL& service_worker_scope,
int worker_thread_id,
std::unique_ptr<base::DictionaryValue> filter);
@@ -80,9 +81,9 @@ class EventListener {
// or an extension service worker. This listener does not have |process_|.
bool IsLazy() const;
- // Returns true if this listener was registered for an extension service
- // worker.
- bool IsForServiceWorker() const;
+ // Returns true if this listener (lazy or not) was registered for an extension
+ // service worker.
+ bool is_for_service_worker() const { return is_for_service_worker_; }
// Modifies this listener to be a lazy listener, clearing process references.
void MakeLazy();
@@ -105,6 +106,7 @@ class EventListener {
const std::string& extension_id,
const GURL& listener_url,
content::RenderProcessHost* process,
+ bool is_for_service_worker,
int worker_thread_id,
std::unique_ptr<base::DictionaryValue> filter);
@@ -112,7 +114,15 @@ class EventListener {
const std::string extension_id_;
const GURL listener_url_;
content::RenderProcessHost* process_;
+
+ const bool is_for_service_worker_ = false;
+
+ // If this listener is for a service worker (i.e.
+ // is_for_service_worker_ = true) and the worker is in running state, then
+ // this is the worker's thread id in the worker |process_|. For lazy service
+ // worker events, this will be kNonWorkerThreadId.
const int worker_thread_id_;
+
std::unique_ptr<base::DictionaryValue> filter_;
EventFilter::MatcherID matcher_id_; // -1 if unset.
« no previous file with comments | « extensions/browser/BUILD.gn ('k') | extensions/browser/event_listener_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698