Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: Source/core/inspector/InspectorTraceEvents.h

Issue 650183003: Clean up forward declarations in Source/core/inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 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;
19 class GraphicsLayer; 18 class GraphicsLayer;
20 class KURL; 19 class KURL;
21 class LayoutRect; 20 class LayoutRect;
22 class LocalFrame; 21 class LocalFrame;
23 class Node; 22 class Node;
24 class RenderImage; 23 class RenderImage;
25 class RenderLayer; 24 class RenderLayer;
26 class RenderObject; 25 class RenderObject;
27 class ResourceRequest; 26 class ResourceRequest;
28 class ResourceResponse; 27 class ResourceResponse;
29 class ScriptCallStack;
30 class ScriptSourceCode;
31 class StyleChangeReasonForTracing; 28 class StyleChangeReasonForTracing;
32 class WorkerThread; 29 class WorkerThread;
33 class XMLHttpRequest; 30 class XMLHttpRequest;
34 31
35 class InspectorLayoutEvent { 32 class InspectorLayoutEvent {
36 public: 33 public:
37 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView* ); 34 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> beginData(FrameView* );
38 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(RenderObject * rootForThisLayout); 35 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> endData(RenderObject * rootForThisLayout);
39 }; 36 };
40 37
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 185
189 class InspectorTracingSessionIdForWorkerEvent { 186 class InspectorTracingSessionIdForWorkerEvent {
190 public: 187 public:
191 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, WorkerThread*); 188 static PassRefPtr<TraceEvent::ConvertableToTraceFormat> data(const String& s essionId, WorkerThread*);
192 }; 189 };
193 190
194 } // namespace blink 191 } // namespace blink
195 192
196 193
197 #endif // !defined(InspectorTraceEvents_h) 194 #endif // !defined(InspectorTraceEvents_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorTimelineAgent.h ('k') | Source/core/inspector/InspectorWorkerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698