| 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;
|
|
|