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 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
307 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingFrameRecord; | 307 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingFrameRecord; |
308 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingGPURecord; | 308 RefPtr<TypeBuilder::Timeline::TimelineEvent> m_pendingGPURecord; |
309 typedef HashMap<unsigned long long, TimelineImageInfo> PixelRefToImageInfoMa p; | 309 typedef HashMap<unsigned long long, TimelineImageInfo> PixelRefToImageInfoMa p; |
310 PixelRefToImageInfoMap m_pixelRefToImageInfo; | 310 PixelRefToImageInfoMap m_pixelRefToImageInfo; |
311 RenderImage* m_imageBeingPainted; | 311 RenderImage* m_imageBeingPainted; |
312 HashMap<unsigned long long, long long> m_layerToNodeMap; | 312 HashMap<unsigned long long, long long> m_layerToNodeMap; |
313 double m_paintSetupStart; | 313 double m_paintSetupStart; |
314 double m_paintSetupEnd; | 314 double m_paintSetupEnd; |
315 RefPtr<JSONObject> m_gpuTask; | 315 RefPtr<JSONObject> m_gpuTask; |
316 RefPtr<JSONValue> m_pendingLayerTreeData; | 316 RefPtr<JSONValue> m_pendingLayerTreeData; |
317 typedef HashMap<ThreadIdentifier, TimelineThreadState> ThreadStateMap; | 317 typedef WillBeHeapHashMap<ThreadIdentifier, OwnPtrWillBeMember<TimelineThrea dState> > ThreadStateMap; |
haraken
2014/06/19 05:49:53
Can we keep using TimelineThreadState (instead of
keishi
2014/07/24 02:15:02
Done.
| |
318 ThreadStateMap m_threadStates; | 318 ThreadStateMap m_threadStates; |
319 bool m_mayEmitFirstPaint; | 319 bool m_mayEmitFirstPaint; |
320 HashSet<String> m_liveEvents; | 320 HashSet<String> m_liveEvents; |
321 double m_lastProgressTimestamp; | 321 double m_lastProgressTimestamp; |
322 }; | 322 }; |
323 | 323 |
324 } // namespace WebCore | 324 } // namespace WebCore |
325 | 325 |
326 #endif // !defined(InspectorTimelineAgent_h) | 326 #endif // !defined(InspectorTimelineAgent_h) |
OLD | NEW |