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

Unified Diff: third_party/WebKit/Source/platform/loader/fetch/FetchContext.h

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo Created 3 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: 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

Powered by Google App Engine
This is Rietveld 408576698