| 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 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 286 InspectorClient* m_client; | 286 InspectorClient* m_client; |
| 287 InspectorOverlay* m_overlay; | 287 InspectorOverlay* m_overlay; |
| 288 InspectorType m_inspectorType; | 288 InspectorType m_inspectorType; |
| 289 | 289 |
| 290 int m_id; | 290 int m_id; |
| 291 unsigned long long m_layerTreeId; | 291 unsigned long long m_layerTreeId; |
| 292 | 292 |
| 293 int m_maxCallStackDepth; | 293 int m_maxCallStackDepth; |
| 294 | 294 |
| 295 Vector<TimelineRecordEntry> m_recordStack; | 295 Vector<TimelineRecordEntry> m_recordStack; |
| 296 RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent> > m_buffered
Events; | 296 RefPtr<TypeBuilder::Array<TypeBuilder::Timeline::TimelineEvent>> m_bufferedE
vents; |
| 297 Vector<String> m_consoleTimelines; | 297 Vector<String> m_consoleTimelines; |
| 298 | 298 |
| 299 unsigned m_platformInstrumentationClientInstalledAtStackDepth; | 299 unsigned m_platformInstrumentationClientInstalledAtStackDepth; |
| 300 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingFrameRecord; | 300 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingFrameRecord; |
| 301 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingGPURecord; | 301 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingGPURecord; |
| 302 typedef HashMap<unsigned long long, TimelineImageInfo> PixelRefToImageInfoMa
p; | 302 typedef HashMap<unsigned long long, TimelineImageInfo> PixelRefToImageInfoMa
p; |
| 303 PixelRefToImageInfoMap m_pixelRefToImageInfo; | 303 PixelRefToImageInfoMap m_pixelRefToImageInfo; |
| 304 RenderImage* m_imageBeingPainted; | 304 RenderImage* m_imageBeingPainted; |
| 305 HashMap<unsigned long long, long long> m_layerToNodeMap; | 305 HashMap<unsigned long long, long long> m_layerToNodeMap; |
| 306 double m_paintSetupStart; | 306 double m_paintSetupStart; |
| 307 double m_paintSetupEnd; | 307 double m_paintSetupEnd; |
| 308 RefPtr<JSONObject> m_gpuTask; | 308 RefPtr<JSONObject> m_gpuTask; |
| 309 RefPtr<JSONValue> m_pendingLayerTreeData; | 309 RefPtr<JSONValue> m_pendingLayerTreeData; |
| 310 typedef WillBeHeapHashMap<ThreadIdentifier, TimelineThreadState> ThreadState
Map; | 310 typedef WillBeHeapHashMap<ThreadIdentifier, TimelineThreadState> ThreadState
Map; |
| 311 ThreadStateMap m_threadStates; | 311 ThreadStateMap m_threadStates; |
| 312 bool m_mayEmitFirstPaint; | 312 bool m_mayEmitFirstPaint; |
| 313 HashSet<String> m_liveEvents; | 313 HashSet<String> m_liveEvents; |
| 314 double m_lastProgressTimestamp; | 314 double m_lastProgressTimestamp; |
| 315 }; | 315 }; |
| 316 | 316 |
| 317 } // namespace blink | 317 } // namespace blink |
| 318 | 318 |
| 319 #endif // !defined(InspectorTimelineAgent_h) | 319 #endif // !defined(InspectorTimelineAgent_h) |
| OLD | NEW |