| Index: content/browser/service_worker/service_worker_info.cc
|
| diff --git a/content/browser/service_worker/service_worker_info.cc b/content/browser/service_worker/service_worker_info.cc
|
| index 8c5f774abd0cf86e426d5bd9a1cb5d0f78312cb8..ea78965199945aeff06f232bf8667fd21964da75 100644
|
| --- a/content/browser/service_worker/service_worker_info.cc
|
| +++ b/content/browser/service_worker/service_worker_info.cc
|
| @@ -9,6 +9,23 @@
|
|
|
| namespace content {
|
|
|
| +ServiceWorkerVersionInfo::ClientInfo::ClientInfo()
|
| + : process_id(-1),
|
| + frame_id(MSG_ROUTING_NONE),
|
| + shared_worker_route_id(MSG_ROUTING_NONE) {
|
| +}
|
| +
|
| +ServiceWorkerVersionInfo::ClientInfo::ClientInfo(int process_id,
|
| + int frame_id,
|
| + int shared_worker_route_id)
|
| + : process_id(process_id),
|
| + frame_id(frame_id),
|
| + shared_worker_route_id(shared_worker_route_id) {
|
| +}
|
| +
|
| +ServiceWorkerVersionInfo::ClientInfo::~ClientInfo() {
|
| +}
|
| +
|
| ServiceWorkerVersionInfo::ServiceWorkerVersionInfo()
|
| : running_status(ServiceWorkerVersion::STOPPED),
|
| status(ServiceWorkerVersion::NEW),
|
|
|