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

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

Issue 1037933002: [DevTools] Send ServiceWorkerVersion.ScriptLastModified and ScriptResponseTime to DevTools window. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix test failure Created 5 years, 9 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 b135ffcd4c1763a736f5365d5fce217786da3bab..fc77c859f0276edb3a77315e93e5a35bb3c6d7a8 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"
@@ -34,6 +35,8 @@ struct CONTENT_EXPORT ServiceWorkerVersionInfo {
int process_id;
int thread_id;
int devtools_agent_route_id;
+ base::Time script_response_time;
+ base::Time script_last_modified;
};
struct CONTENT_EXPORT ServiceWorkerRegistrationInfo {

Powered by Google App Engine
This is Rietveld 408576698