Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1884)

Unified Diff: content/browser/service_worker/service_worker_info.h

Issue 672813002: [ServiceWorker] Added size deltas and total size computation for QuotaM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed last comment Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 {

Powered by Google App Engine
This is Rietveld 408576698