OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 struct TimelineRecordEntry; | 54 struct TimelineRecordEntry; |
55 struct TimelineThreadState; | 55 struct TimelineThreadState; |
56 | 56 |
57 class LocalDOMWindow; | 57 class LocalDOMWindow; |
58 class Document; | 58 class Document; |
59 class DocumentLoader; | 59 class DocumentLoader; |
60 class Event; | 60 class Event; |
61 class ExecutionContext; | 61 class ExecutionContext; |
62 class FloatQuad; | 62 class FloatQuad; |
63 class LocalFrame; | 63 class LocalFrame; |
64 class FrameHost; | |
65 class GraphicsContext; | 64 class GraphicsContext; |
66 class GraphicsLayer; | 65 class GraphicsLayer; |
67 class InspectorClient; | 66 class InspectorClient; |
68 class InspectorFrontend; | 67 class InspectorFrontend; |
69 class InspectorOverlay; | 68 class InspectorOverlay; |
70 class InspectorPageAgent; | 69 class InspectorPageAgent; |
71 class InspectorLayerTreeAgent; | 70 class InspectorLayerTreeAgent; |
72 class InstrumentingAgents; | |
73 class KURL; | 71 class KURL; |
74 class ScriptState; | 72 class ScriptState; |
75 class Node; | 73 class Node; |
76 class RenderImage; | 74 class RenderImage; |
77 class RenderObject; | 75 class RenderObject; |
78 class ResourceError; | 76 class ResourceError; |
79 class ResourceLoader; | 77 class ResourceLoader; |
80 class ResourceRequest; | 78 class ResourceRequest; |
81 class ResourceResponse; | 79 class ResourceResponse; |
82 class ScriptArguments; | |
83 class ScriptCallStack; | |
84 class TimelineRecordStack; | 80 class TimelineRecordStack; |
85 class WebSocketHandshakeRequest; | 81 class WebSocketHandshakeRequest; |
86 class WebSocketHandshakeResponse; | 82 class WebSocketHandshakeResponse; |
87 class XMLHttpRequest; | 83 class XMLHttpRequest; |
88 | 84 |
89 typedef String ErrorString; | 85 typedef String ErrorString; |
90 | 86 |
91 class InspectorTimelineAgent final | 87 class InspectorTimelineAgent final |
92 : public InspectorBaseAgent<InspectorTimelineAgent> | 88 : public InspectorBaseAgent<InspectorTimelineAgent> |
93 , public ScriptGCEventListener | 89 , public ScriptGCEventListener |
(...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 typedef WillBeHeapHashMap<ThreadIdentifier, TimelineThreadState> ThreadState
Map; | 312 typedef WillBeHeapHashMap<ThreadIdentifier, TimelineThreadState> ThreadState
Map; |
317 ThreadStateMap m_threadStates; | 313 ThreadStateMap m_threadStates; |
318 bool m_mayEmitFirstPaint; | 314 bool m_mayEmitFirstPaint; |
319 HashSet<String> m_liveEvents; | 315 HashSet<String> m_liveEvents; |
320 double m_lastProgressTimestamp; | 316 double m_lastProgressTimestamp; |
321 }; | 317 }; |
322 | 318 |
323 } // namespace blink | 319 } // namespace blink |
324 | 320 |
325 #endif // !defined(InspectorTimelineAgent_h) | 321 #endif // !defined(InspectorTimelineAgent_h) |
OLD | NEW |