| 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 b135ffcd4c1763a736f5365d5fce217786da3bab..b5964629cd11334a3d99aa808ba67b70ec9cbaac 100644
|
| --- a/content/browser/service_worker/service_worker_info.h
|
| +++ b/content/browser/service_worker/service_worker_info.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <vector>
|
|
|
| +#include "base/time/time.h"
|
| #include "content/browser/service_worker/service_worker_version.h"
|
| #include "content/common/content_export.h"
|
| #include "url/gurl.h"
|
| @@ -23,7 +24,8 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
|
| int64 version_id,
|
| int process_id,
|
| int thread_id,
|
| - int devtools_agent_route_id);
|
| + int devtools_agent_route_id,
|
| + base::Time update_time);
|
| ~ServiceWorkerVersionInfo();
|
|
|
| ServiceWorkerVersion::RunningStatus running_status;
|
| @@ -34,6 +36,7 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
|
| int process_id;
|
| int thread_id;
|
| int devtools_agent_route_id;
|
| + base::Time update_time;
|
| };
|
|
|
| struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
|
|