| 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" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class Document; | 14 class Document; |
| 15 class Event; | 15 class Event; |
| 16 class ExecutionContext; | 16 class ExecutionContext; |
| 17 class FrameView; | 17 class FrameView; |
| 18 class GraphicsContext; | 18 class GraphicsContext; |
| 19 class GraphicsLayer; | |
| 20 class KURL; | 19 class KURL; |
| 21 class LayoutRect; | 20 class LayoutRect; |
| 22 class LocalFrame; | 21 class LocalFrame; |
| 23 class RenderObject; | 22 class RenderObject; |
| 24 class RenderImage; | 23 class RenderImage; |
| 25 class ResourceRequest; | 24 class ResourceRequest; |
| 26 class ResourceResponse; | 25 class ResourceResponse; |
| 27 class ScriptSourceCode; | 26 class ScriptSourceCode; |
| 28 class ScriptCallStack; | 27 class ScriptCallStack; |
| 29 | 28 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 | 124 |
| 126 class InspectorTimeStampEvent { | 125 class InspectorTimeStampEvent { |
| 127 public: | 126 public: |
| 128 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); | 127 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(ExecutionContex
t*, const String& message); |
| 129 }; | 128 }; |
| 130 | 129 |
| 131 } // namespace blink | 130 } // namespace blink |
| 132 | 131 |
| 133 | 132 |
| 134 #endif // SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ | 133 #endif // SKY_ENGINE_CORE_INSPECTOR_INSPECTORTRACEEVENTS_H_ |
| OLD | NEW |