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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h

Issue 2706643002: DevTools: Move network request instrumentation points for timeline down the stack. (Closed)
Patch Set: . Created 3 years, 10 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/core/inspector/InspectorTraceEvents.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
index b120539b75864ed54c20ee02a1f4bf271e551f42..55071f66624e79d10bdc1e4b428e3db152ef3399 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.h
@@ -47,7 +47,6 @@ class QualifiedName;
class LayoutImage;
class LayoutObject;
class ResourceRequest;
-class ResourceResponse;
class StyleChangeReasonForTracing;
class StyleImage;
class WorkerThread;
@@ -202,25 +201,6 @@ std::unique_ptr<TracedValue> data(unsigned long identifier,
const ResourceRequest&);
}
-namespace InspectorReceiveResponseEvent {
-std::unique_ptr<TracedValue> data(unsigned long identifier,
- LocalFrame*,
- const ResourceResponse&);
-}
-
-namespace InspectorReceiveDataEvent {
-std::unique_ptr<TracedValue> data(unsigned long identifier,
- LocalFrame*,
- int encodedDataLength);
-}
-
-namespace InspectorResourceFinishEvent {
-std::unique_ptr<TracedValue> data(unsigned long identifier,
- double finishTime,
- bool didFail,
- int64_t encodedDataLength);
-}
-
namespace InspectorTimerInstallEvent {
std::unique_ptr<TracedValue> data(ExecutionContext*,
int timerId,

Powered by Google App Engine
This is Rietveld 408576698