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

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

Issue 1410153009: DevTools: Make network events continuous on Timeline (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move events to a separate file 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 TraceEventArguments_h
6 #define TraceEventArguments_h
7
8 #include "core/CoreExport.h"
caseq 2015/11/13 00:23:23 is this useD?
alph 2015/11/13 00:32:34 Done.
9 #include "wtf/PassRefPtr.h"
10
11 namespace blink {
12
13 class ResourceRequest;
14 class ResourceResponse;
15
16 namespace TraceEvent {
17 class ConvertableToTraceFormat;
18 }
19
20 namespace InspectorSendRequestEvent {
21 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, const ResourceRequest&);
22 }
23
24 namespace InspectorReceiveResponseEvent {
25 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, const ResourceResponse&);
26 }
27
28 namespace InspectorReceiveDataEvent {
29 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, int encodedDataLength);
30 }
31
32 namespace InspectorResourceFinishEvent {
33 PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(unsigned long identifier, double finishTime, bool didFail);
34 }
35
36 } // namespace blink
37
38 #endif // TraceEventArguments_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698