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

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

Issue 1841863003: DevTools: move the force update SW on reload checkbox to the Resources / Service Workers view. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 135f0a03da1f33fe494b25289a2fe9be3bef2978..8de17feaa24dc28d2b187f0c608ae0b9c22a7d9c 100644
--- a/content/browser/service_worker/service_worker_info.h
+++ b/content/browser/service_worker/service_worker_info.h
@@ -56,7 +56,6 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
public:
enum DeleteFlag { IS_NOT_DELETED, IS_DELETED };
- enum ForceUpdateOnPageLoad { IS_NOT_FORCED, IS_FORCED };
ServiceWorkerRegistrationInfo();
ServiceWorkerRegistrationInfo(const GURL& pattern,
int64_t registration_id,
@@ -65,7 +64,6 @@ struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
const GURL& pattern,
int64_t registration_id,
DeleteFlag delete_flag,
- ForceUpdateOnPageLoad force_update_on_page_load,
const ServiceWorkerVersionInfo& active_version,
const ServiceWorkerVersionInfo& waiting_version,
const ServiceWorkerVersionInfo& installing_version,
@@ -76,7 +74,6 @@ struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
GURL pattern;
int64_t registration_id;
DeleteFlag delete_flag;
- ForceUpdateOnPageLoad force_update_on_page_load;
ServiceWorkerVersionInfo active_version;
ServiceWorkerVersionInfo waiting_version;
ServiceWorkerVersionInfo installing_version;

Powered by Google App Engine
This is Rietveld 408576698