| Index: content/browser/service_worker/service_worker_registration.h
|
| diff --git a/content/browser/service_worker/service_worker_registration.h b/content/browser/service_worker/service_worker_registration.h
|
| index bdf2c4026ba5cd98a0ab9e729c91335ca9017eeb..ff8011c3a9d61c2aced72088aad5d4fe2eb82926 100644
|
| --- a/content/browser/service_worker/service_worker_registration.h
|
| +++ b/content/browser/service_worker/service_worker_registration.h
|
| @@ -51,11 +51,13 @@ class CONTENT_EXPORT ServiceWorkerRegistration
|
| };
|
|
|
| ServiceWorkerRegistration(const GURL& pattern,
|
| + bool use_cache,
|
| int64_t registration_id,
|
| base::WeakPtr<ServiceWorkerContextCore> context);
|
|
|
| int64_t id() const { return registration_id_; }
|
| const GURL& pattern() const { return pattern_; }
|
| + bool use_cache() const { return use_cache_; }
|
|
|
| bool is_deleted() const { return is_deleted_; }
|
| void set_is_deleted(bool deleted) { is_deleted_ = deleted; }
|
| @@ -194,6 +196,7 @@ class CONTENT_EXPORT ServiceWorkerRegistration
|
| ServiceWorkerStatusCode status);
|
|
|
| const GURL pattern_;
|
| + const bool use_cache_;
|
| const int64_t registration_id_;
|
| bool is_deleted_;
|
| bool is_uninstalling_;
|
|
|