| 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 SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ | 5 #ifndef SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ |
| 6 #define SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ | 6 #define SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ |
| 7 | 7 |
| 8 #include "sky/engine/platform/EventTracer.h" | 8 #include "sky/engine/platform/EventTracer.h" |
| 9 #include "sky/engine/platform/TraceEvent.h" | 9 #include "sky/engine/platform/TraceEvent.h" |
| 10 #include "sky/engine/wtf/Forward.h" | 10 #include "sky/engine/wtf/Forward.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 class InspectorPaintImageEvent { | 84 class InspectorPaintImageEvent { |
| 85 public: | 85 public: |
| 86 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const RenderIma
ge&); | 86 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const RenderIma
ge&); |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 class InspectorMarkLoadEvent { | 89 class InspectorMarkLoadEvent { |
| 90 public: | 90 public: |
| 91 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(); | 91 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(); |
| 92 }; | 92 }; |
| 93 | 93 |
| 94 class InspectorScrollLayerEvent { | |
| 95 public: | |
| 96 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(RenderObject*); | |
| 97 }; | |
| 98 | |
| 99 class InspectorEvaluateScriptEvent { | 94 class InspectorEvaluateScriptEvent { |
| 100 public: | 95 public: |
| 101 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& u
rl, int lineNumber); | 96 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& u
rl, int lineNumber); |
| 102 }; | 97 }; |
| 103 | 98 |
| 104 class InspectorFunctionCallEvent { | 99 class InspectorFunctionCallEvent { |
| 105 public: | 100 public: |
| 106 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, int scriptId, const String& scriptName, int scriptLine); | 101 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, int scriptId, const String& scriptName, int scriptLine); |
| 107 }; | 102 }; |
| 108 | 103 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 123 | 118 |
| 124 class InspectorTimeStampEvent { | 119 class InspectorTimeStampEvent { |
| 125 public: | 120 public: |
| 126 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); | 121 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); |
| 127 }; | 122 }; |
| 128 | 123 |
| 129 } // namespace blink | 124 } // namespace blink |
| 130 | 125 |
| 131 | 126 |
| 132 #endif // SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ | 127 #endif // SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ |
| OLD | NEW |