OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef InspectorTraceEvents_h | 5 #ifndef InspectorTraceEvents_h |
6 #define InspectorTraceEvents_h | 6 #define InspectorTraceEvents_h |
7 | 7 |
8 #include "core/css/CSSSelector.h" | 8 #include "core/css/CSSSelector.h" |
9 #include "platform/EventTracer.h" | 9 #include "platform/EventTracer.h" |
10 #include "platform/TraceEvent.h" | 10 #include "platform/TraceEvent.h" |
11 #include "platform/heap/Handle.h" | 11 #include "platform/heap/Handle.h" |
12 #include "wtf/Forward.h" | 12 #include "wtf/Forward.h" |
13 #include "wtf/Functional.h" | 13 #include "wtf/Functional.h" |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
16 | 16 |
| 17 class CSSStyleSheetResource; |
17 class DescendantInvalidationSet; | 18 class DescendantInvalidationSet; |
18 class Document; | 19 class Document; |
19 class Element; | 20 class Element; |
20 class Event; | 21 class Event; |
21 class ExecutionContext; | 22 class ExecutionContext; |
22 class FrameView; | 23 class FrameView; |
23 class GraphicsLayer; | 24 class GraphicsLayer; |
24 class KURL; | 25 class KURL; |
25 class LayoutRect; | 26 class LayoutRect; |
26 class LocalFrame; | 27 class LocalFrame; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 class InspectorWebSocketEvent { | 163 class InspectorWebSocketEvent { |
163 public: | 164 public: |
164 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi
gned long identifier); | 165 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(Document*, unsi
gned long identifier); |
165 }; | 166 }; |
166 | 167 |
167 class InspectorParseHtmlEvent { | 168 class InspectorParseHtmlEvent { |
168 public: | 169 public: |
169 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(Document*,
unsigned startLine); | 170 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(Document*,
unsigned startLine); |
170 }; | 171 }; |
171 | 172 |
| 173 class InspectorParseAuthorStyleSheetEvent { |
| 174 public: |
| 175 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const CSSStyleS
heetResource*); |
| 176 }; |
| 177 |
172 class InspectorXhrReadyStateChangeEvent { | 178 class InspectorXhrReadyStateChangeEvent { |
173 public: | 179 public: |
174 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, XMLHttpRequest*); | 180 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, XMLHttpRequest*); |
175 }; | 181 }; |
176 | 182 |
177 class InspectorXhrLoadEvent { | 183 class InspectorXhrLoadEvent { |
178 public: | 184 public: |
179 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, XMLHttpRequest*); | 185 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, XMLHttpRequest*); |
180 }; | 186 }; |
181 | 187 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 | 254 |
249 class InspectorTracingSessionIdForWorkerEvent { | 255 class InspectorTracingSessionIdForWorkerEvent { |
250 public: | 256 public: |
251 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, WorkerThread*); | 257 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, WorkerThread*); |
252 }; | 258 }; |
253 | 259 |
254 } // namespace blink | 260 } // namespace blink |
255 | 261 |
256 | 262 |
257 #endif // !defined(InspectorTraceEvents_h) | 263 #endif // !defined(InspectorTraceEvents_h) |
OLD | NEW |