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

Unified Diff: Source/core/fetch/RawResource.h

Issue 1184403003: Offer Resource Timing in workers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 5 years, 6 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
« no previous file with comments | « Source/core/fetch/DEPS ('k') | Source/core/fetch/RawResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fetch/RawResource.h
diff --git a/Source/core/fetch/RawResource.h b/Source/core/fetch/RawResource.h
index 62da51c48cc38a0e8b08402e099750bb5c5d69b3..b4438a113cc0c6e532c7b574477d446e70191db2 100644
--- a/Source/core/fetch/RawResource.h
+++ b/Source/core/fetch/RawResource.h
@@ -80,6 +80,7 @@ private:
void setSerializedCachedMetadata(const char*, size_t) override;
void didSendData(unsigned long long bytesSent, unsigned long long totalBytesToBeSent) override;
void didDownloadData(int) override;
+ void reportResourceTimingToClients(const ResourceTimingInfo&) override;
};
#if ENABLE(SECURITY_ASSERT)
@@ -108,6 +109,7 @@ public:
virtual void redirectReceived(Resource*, ResourceRequest&, const ResourceResponse&) { }
virtual void updateRequest(Resource*, const ResourceRequest&) { }
virtual void dataDownloaded(Resource*, int) { }
+ virtual void didReceiveResourceTiming(Resource*, const ResourceTimingInfo&) { }
};
}
« no previous file with comments | « Source/core/fetch/DEPS ('k') | Source/core/fetch/RawResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698