| 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 class AnimationPlayer; | 16 class Animation; |
| 17 class CSSStyleSheetResource; | 17 class CSSStyleSheetResource; |
| 18 class DescendantInvalidationSet; | 18 class DescendantInvalidationSet; |
| 19 class Document; | 19 class Document; |
| 20 class Element; | 20 class Element; |
| 21 class Event; | 21 class Event; |
| 22 class ExecutionContext; | 22 class ExecutionContext; |
| 23 class FrameView; | 23 class FrameView; |
| 24 class GraphicsLayer; | 24 class GraphicsLayer; |
| 25 class ImageResource; | 25 class ImageResource; |
| 26 class KURL; | 26 class KURL; |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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
Player&); | 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
Player&); | 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 |