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" |
(...skipping 19 matching lines...) Expand all Loading... |
30 class Node; | 30 class Node; |
31 class QualifiedName; | 31 class QualifiedName; |
32 class Page; | 32 class Page; |
33 class LayoutImage; | 33 class LayoutImage; |
34 class LayoutObject; | 34 class LayoutObject; |
35 class ResourceRequest; | 35 class ResourceRequest; |
36 class ResourceResponse; | 36 class ResourceResponse; |
37 class StyleChangeReasonForTracing; | 37 class StyleChangeReasonForTracing; |
38 class StyleImage; | 38 class StyleImage; |
39 class TracedValue; | 39 class TracedValue; |
40 class WorkerThread; | 40 class WorkerScript; |
41 class XMLHttpRequest; | 41 class XMLHttpRequest; |
42 | 42 |
43 class InspectorLayoutEvent { | 43 class InspectorLayoutEvent { |
44 public: | 44 public: |
45 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*
); | 45 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView*
); |
46 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(LayoutObject
* rootForThisLayout); | 46 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(LayoutObject
* rootForThisLayout); |
47 }; | 47 }; |
48 | 48 |
49 class InspectorScheduleStyleInvalidationTrackingEvent { | 49 class InspectorScheduleStyleInvalidationTrackingEvent { |
50 public: | 50 public: |
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Event&); | 320 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Event&); |
321 }; | 321 }; |
322 | 322 |
323 class InspectorTimeStampEvent { | 323 class InspectorTimeStampEvent { |
324 public: | 324 public: |
325 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); | 325 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); |
326 }; | 326 }; |
327 | 327 |
328 class InspectorTracingSessionIdForWorkerEvent { | 328 class InspectorTracingSessionIdForWorkerEvent { |
329 public: | 329 public: |
330 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, const String& workerId, WorkerThread*); | 330 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, const String& workerId, WorkerScript*); |
331 }; | 331 }; |
332 | 332 |
333 class InspectorTracingStartedInFrame { | 333 class InspectorTracingStartedInFrame { |
334 public: | 334 public: |
335 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, LocalFrame*); | 335 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, LocalFrame*); |
336 }; | 336 }; |
337 | 337 |
338 class InspectorSetLayerTreeId { | 338 class InspectorSetLayerTreeId { |
339 public: | 339 public: |
340 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, int layerTreeId); | 340 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s
essionId, int layerTreeId); |
341 }; | 341 }; |
342 | 342 |
343 class InspectorAnimationEvent { | 343 class InspectorAnimationEvent { |
344 public: | 344 public: |
345 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation
&); | 345 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation
&); |
346 }; | 346 }; |
347 | 347 |
348 class InspectorAnimationStateEvent { | 348 class InspectorAnimationStateEvent { |
349 public: | 349 public: |
350 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation
&); | 350 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Animation
&); |
351 }; | 351 }; |
352 | 352 |
353 } // namespace blink | 353 } // namespace blink |
354 | 354 |
355 | 355 |
356 #endif // !defined(InspectorTraceEvents_h) | 356 #endif // !defined(InspectorTraceEvents_h) |
OLD | NEW |