| Index: third_party/WebKit/Source/platform/loader/fetch/FetchContext.h
|
| diff --git a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.h b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.h
|
| index d388b0e9f77f4b88d29a8b62c0a55a56dc94150f..63e591fd4716a766b171646c3f20fb56eabb5f4e 100644
|
| --- a/third_party/WebKit/Source/platform/loader/fetch/FetchContext.h
|
| +++ b/third_party/WebKit/Source/platform/loader/fetch/FetchContext.h
|
| @@ -47,7 +47,7 @@ namespace blink {
|
| class ClientHintsPreferences;
|
| class KURL;
|
| class MHTMLArchive;
|
| -class PlatformInstrumentationAgents;
|
| +class PlatformProbeSink;
|
| class ResourceError;
|
| class ResourceResponse;
|
| class ResourceTimingInfo;
|
| @@ -198,15 +198,13 @@ class PLATFORM_EXPORT FetchContext
|
|
|
| virtual RefPtr<WebTaskRunner> loadingTaskRunner() const { return nullptr; }
|
|
|
| - PlatformInstrumentationAgents* instrumentingAgents() const {
|
| - return m_instrumentingAgents;
|
| - }
|
| + PlatformProbeSink* platformProbeSink() const { return m_platformProbeSink; }
|
|
|
| protected:
|
| FetchContext();
|
|
|
| private:
|
| - Member<PlatformInstrumentationAgents> m_instrumentingAgents;
|
| + Member<PlatformProbeSink> m_platformProbeSink;
|
| };
|
|
|
| } // namespace blink
|
|
|