| 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 6fc2eef1c5d46d6af93e1921228d901244a5565f..78b1766cc177de76aecbd57699861858f381d609 100644
|
| --- a/content/browser/service_worker/service_worker_info.h
|
| +++ b/content/browser/service_worker/service_worker_info.h
|
| @@ -22,7 +22,8 @@ class CONTENT_EXPORT ServiceWorkerVersionInfo {
|
| int64 version_id,
|
| int process_id,
|
| int thread_id,
|
| - int devtools_agent_route_id);
|
| + int devtools_agent_route_id,
|
| + size_t resources_total_size_bytes);
|
| ~ServiceWorkerVersionInfo();
|
|
|
| bool is_null;
|
| @@ -33,6 +34,7 @@ class CONTENT_EXPORT ServiceWorkerVersionInfo {
|
| int process_id;
|
| int thread_id;
|
| int devtools_agent_route_id;
|
| + size_t resources_total_size_bytes;
|
| };
|
|
|
| class CONTENT_EXPORT ServiceWorkerRegistrationInfo {
|
|
|