| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 #include "core/inspector/InspectorPageAgent.h" | 48 #include "core/inspector/InspectorPageAgent.h" |
| 49 #include "core/inspector/InspectorState.h" | 49 #include "core/inspector/InspectorState.h" |
| 50 #include "core/inspector/InstrumentingAgents.h" | 50 #include "core/inspector/InstrumentingAgents.h" |
| 51 #include "core/inspector/ScriptCallStack.h" | 51 #include "core/inspector/ScriptCallStack.h" |
| 52 #include "core/inspector/TimelineRecordFactory.h" | 52 #include "core/inspector/TimelineRecordFactory.h" |
| 53 #include "core/inspector/TraceEventDispatcher.h" | 53 #include "core/inspector/TraceEventDispatcher.h" |
| 54 #include "core/loader/DocumentLoader.h" | 54 #include "core/loader/DocumentLoader.h" |
| 55 #include "core/page/Page.h" | 55 #include "core/page/Page.h" |
| 56 #include "core/rendering/RenderObject.h" | 56 #include "core/rendering/RenderObject.h" |
| 57 #include "core/rendering/RenderView.h" | 57 #include "core/rendering/RenderView.h" |
| 58 #include "core/xml/XMLHttpRequest.h" | 58 #include "core/xmlhttprequest/XMLHttpRequest.h" |
| 59 #include "platform/TraceEvent.h" | 59 #include "platform/TraceEvent.h" |
| 60 #include "platform/graphics/DeferredImageDecoder.h" | 60 #include "platform/graphics/DeferredImageDecoder.h" |
| 61 #include "platform/graphics/GraphicsLayer.h" | 61 #include "platform/graphics/GraphicsLayer.h" |
| 62 #include "platform/network/ResourceRequest.h" | 62 #include "platform/network/ResourceRequest.h" |
| 63 #include "wtf/CurrentTime.h" | 63 #include "wtf/CurrentTime.h" |
| 64 #include "wtf/DateMath.h" | 64 #include "wtf/DateMath.h" |
| 65 | 65 |
| 66 namespace blink { | 66 namespace blink { |
| 67 | 67 |
| 68 namespace TimelineAgentState { | 68 namespace TimelineAgentState { |
| (...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1370 { | 1370 { |
| 1371 visitor->trace(m_timelineAgent); | 1371 visitor->trace(m_timelineAgent); |
| 1372 } | 1372 } |
| 1373 | 1373 |
| 1374 void TimelineThreadState::trace(Visitor* visitor) | 1374 void TimelineThreadState::trace(Visitor* visitor) |
| 1375 { | 1375 { |
| 1376 visitor->trace(recordStack); | 1376 visitor->trace(recordStack); |
| 1377 } | 1377 } |
| 1378 | 1378 |
| 1379 } // namespace blink | 1379 } // namespace blink |
| OLD | NEW |