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

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

Issue 1410153009: DevTools: Make network events continuous on Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressing comments 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 DevToolsTraceEvents_h
pfeldman 2015/11/13 05:25:46 InspectorTraceEvents ?
alph 2015/11/13 18:46:13 InspectorFetchTraceEvents to not clash with the on
6 #define DevToolsTraceEvents_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 // DevToolsTraceEvents_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698