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

Unified Diff: content/browser/service_worker/service_worker_info.h

Issue 2334003004: Show the fetch handler existence in chrome://serviceworker-internals (Closed)
Patch Set: Created 4 years, 3 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
Index: content/browser/service_worker/service_worker_info.h
diff --git a/content/browser/service_worker/service_worker_info.h b/content/browser/service_worker/service_worker_info.h
index e27087803405b86ac04aee18dacf6ccbc6229265..2fbaabf5659aa2da44cc9f2a89e6b3b93fd2c4b7 100644
--- a/content/browser/service_worker/service_worker_info.h
+++ b/content/browser/service_worker/service_worker_info.h
@@ -31,19 +31,22 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
};
ServiceWorkerVersionInfo();
- ServiceWorkerVersionInfo(EmbeddedWorkerStatus running_status,
- ServiceWorkerVersion::Status status,
- const GURL& script_url,
- int64_t registration_id,
- int64_t version_id,
- int process_id,
- int thread_id,
- int devtools_agent_route_id);
+ ServiceWorkerVersionInfo(
+ EmbeddedWorkerStatus running_status,
+ ServiceWorkerVersion::Status status,
+ ServiceWorkerVersion::FetchHandlerExistence fetch_handler_existence,
+ const GURL& script_url,
+ int64_t registration_id,
+ int64_t version_id,
+ int process_id,
+ int thread_id,
+ int devtools_agent_route_id);
ServiceWorkerVersionInfo(const ServiceWorkerVersionInfo& other);
~ServiceWorkerVersionInfo();
EmbeddedWorkerStatus running_status;
ServiceWorkerVersion::Status status;
+ ServiceWorkerVersion::FetchHandlerExistence fetch_handler_existence;
GURL script_url;
int64_t registration_id;
int64_t version_id;

Powered by Google App Engine
This is Rietveld 408576698