Chromium Code Reviews| 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&) { } |
|
Nate Chapin
2015/06/23 18:17:17
I don't know the worker logic very well; is there
Kunihiko Sakamoto
2015/06/24 01:31:32
I agree this is a bit strange, but kinuko@ and I t
|
| virtual bool isDocumentThreadableLoaderClient() { return false; } |