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

Unified Diff: content/common/service_worker/service_worker_client_info.h

Issue 2905593002: Clients.matchAll() should return ordered clients by type/focus time/creation time (Closed)
Patch Set: Address shimazu's comments #31 and fix the test failure Created 3 years, 7 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/common/service_worker/service_worker_client_info.h
diff --git a/content/common/service_worker/service_worker_client_info.h b/content/common/service_worker/service_worker_client_info.h
index 93bfdf447a2c03e73233649bf53f6a58572dade6..5d789e4b560905780c0a30258d3936270ef4517b 100644
--- a/content/common/service_worker/service_worker_client_info.h
+++ b/content/common/service_worker/service_worker_client_info.h
@@ -26,6 +26,7 @@ struct ServiceWorkerClientInfo {
const GURL& url,
RequestContextFrameType frame_type,
base::TimeTicks last_focus_time,
+ base::TimeTicks create_time,
blink::WebServiceWorkerClientType client_type);
ServiceWorkerClientInfo(const ServiceWorkerClientInfo& other);
@@ -42,6 +43,7 @@ struct ServiceWorkerClientInfo {
GURL url;
RequestContextFrameType frame_type;
base::TimeTicks last_focus_time;
+ base::TimeTicks create_time;
blink::WebServiceWorkerClientType client_type;
};
« no previous file with comments | « content/browser/service_worker/service_worker_version.cc ('k') | content/common/service_worker/service_worker_client_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698