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

Unified Diff: third_party/WebKit/Source/platform/instrumentation/PlatformInstrumentation.idl

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: 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/instrumentation/PlatformInstrumentation.idl
diff --git a/third_party/WebKit/Source/platform/instrumentation/PlatformInstrumentation.idl b/third_party/WebKit/Source/platform/instrumentation/PlatformInstrumentation.idl
new file mode 100644
index 0000000000000000000000000000000000000000..c2fc3a0619240d46ef4d93a1250e36c37ee3a42c
--- /dev/null
+++ b/third_party/WebKit/Source/platform/instrumentation/PlatformInstrumentation.idl
@@ -0,0 +1,16 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+interface PlatformInstrumentation {
+
+#define PROBE_EXPORT PLATFORM_EXPORT
+
+class FetchContext;
+class ResourceRequest;
+class ResourceResponse;
+struct FetchInitiatorInfo;
+
+ [PlatformTraceEvents]
+ PlatformSendRequest([Keep] FetchContext*, unsigned long identifier, ResourceRequest&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo&);
+}

Powered by Google App Engine
This is Rietveld 408576698