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

Side by Side Diff: third_party/WebKit/Source/core/fetch/InspectorFetchTraceEvents.h

Issue 1410153009: DevTools: Make network events continuous on Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 4 landing Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef InspectorFetchTraceEvents_h
6 #define InspectorFetchTraceEvents_h
7
8 #include "wtf/PassRefPtr.h"
9
10 namespace blink {
11
12 class ResourceRequest;
13 class ResourceResponse;
14
15 namespace TraceEvent {
16 class ConvertableToTraceFormat;
17 }
18
19 namespace InspectorSendRequestEvent {
20 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, const ResourceRequest&);
21 }
22
23 namespace InspectorReceiveResponseEvent {
24 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, const ResourceResponse&);
25 }
26
27 namespace InspectorReceiveDataEvent {
28 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, int encodedDataLength);
29 }
30
31 namespace InspectorResourceFinishEvent {
32 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, double finishTime, bool didFail);
33 }
34
35 } // namespace blink
36
37 #endif // InspectorFetchTraceEvents_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/fetch/InspectorFetchTraceEvents.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698