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

Unified Diff: Source/core/loader/ThreadableLoaderClient.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/loader/FrameFetchContext.cpp ('k') | Source/core/loader/ThreadableLoaderClientWrapper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/ThreadableLoaderClient.h
diff --git a/Source/core/loader/ThreadableLoaderClient.h b/Source/core/loader/ThreadableLoaderClient.h
index fd9e975fed696e3e7f376402b63c8790f53f5b9c..431e6cf51008b4d404ecbbb450c5b8810fa1a7ce 100644
--- a/Source/core/loader/ThreadableLoaderClient.h
+++ b/Source/core/loader/ThreadableLoaderClient.h
@@ -42,6 +42,7 @@ namespace blink {
class ResourceError;
class ResourceResponse;
+ class ResourceTimingInfo;
class CORE_EXPORT ThreadableLoaderClient {
WTF_MAKE_NONCOPYABLE(ThreadableLoaderClient);
@@ -56,6 +57,7 @@ namespace blink {
virtual void didFail(const ResourceError&) { }
virtual void didFailAccessControlCheck(const ResourceError& error) { didFail(error); }
virtual void didFailRedirectCheck() { }
+ virtual void didReceiveResourceTiming(const ResourceTimingInfo&) { }
virtual bool isDocumentThreadableLoaderClient() { return false; }
« no previous file with comments | « Source/core/loader/FrameFetchContext.cpp ('k') | Source/core/loader/ThreadableLoaderClientWrapper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698