| 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 "platform/EventTracer.h" | 8 #include "platform/EventTracer.h" |
| 9 #include "platform/TraceEvent.h" | 9 #include "platform/TraceEvent.h" |
| 10 #include "wtf/Forward.h" | 10 #include "wtf/Forward.h" |
| 11 | 11 |
| 12 namespace WebCore { | 12 namespace WebCore { |
| 13 | 13 |
| 14 class Document; | 14 class Document; |
| 15 class Event; |
| 15 class ExecutionContext; | 16 class ExecutionContext; |
| 16 class FrameView; | 17 class FrameView; |
| 17 class GraphicsContext; | 18 class GraphicsContext; |
| 18 class GraphicsLayer; | 19 class GraphicsLayer; |
| 19 class KURL; | 20 class KURL; |
| 20 class LayoutRect; | 21 class LayoutRect; |
| 21 class LocalFrame; | 22 class LocalFrame; |
| 22 class RenderObject; | 23 class RenderObject; |
| 23 class RenderImage; | 24 class RenderImage; |
| 24 class ResourceRequest; | 25 class ResourceRequest; |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 class InspectorUpdateCountersEvent { | 132 class InspectorUpdateCountersEvent { |
| 132 public: | 133 public: |
| 133 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(); | 134 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(); |
| 134 }; | 135 }; |
| 135 | 136 |
| 136 class InspectorCallStackEvent { | 137 class InspectorCallStackEvent { |
| 137 public: | 138 public: |
| 138 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> currentCallStack(); | 139 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> currentCallStack(); |
| 139 }; | 140 }; |
| 140 | 141 |
| 142 class InspectorEventDispatchEvent { |
| 143 public: |
| 144 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const Event&); |
| 145 }; |
| 146 |
| 141 } // namespace WebCore | 147 } // namespace WebCore |
| 142 | 148 |
| 143 | 149 |
| 144 #endif // !defined(InspectorTraceEvents_h) | 150 #endif // !defined(InspectorTraceEvents_h) |
| OLD | NEW |