| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #include "core/frame/PerformanceMonitor.h" | 5 #include "core/frame/PerformanceMonitor.h" |
| 6 | 6 |
| 7 #include "bindings/core/v8/ScheduledAction.h" | 7 #include "bindings/core/v8/ScheduledAction.h" |
| 8 #include "bindings/core/v8/ScriptEventListener.h" | 8 #include "bindings/core/v8/ScriptEventListener.h" |
| 9 #include "bindings/core/v8/SourceLocation.h" | 9 #include "bindings/core/v8/SourceLocation.h" |
| 10 #include "core/InstrumentingAgents.h" | 10 #include "core/InspectorInstrumentationAgents.h" |
| 11 #include "core/dom/Document.h" | 11 #include "core/dom/Document.h" |
| 12 #include "core/dom/ExecutionContext.h" | 12 #include "core/dom/ExecutionContext.h" |
| 13 #include "core/events/EventListener.h" | 13 #include "core/events/EventListener.h" |
| 14 #include "core/frame/Frame.h" | 14 #include "core/frame/Frame.h" |
| 15 #include "core/frame/LocalFrame.h" | 15 #include "core/frame/LocalFrame.h" |
| 16 #include "core/html/parser/HTMLDocumentParser.h" | 16 #include "core/html/parser/HTMLDocumentParser.h" |
| 17 #include "core/inspector/InspectorInstrumentation.h" | 17 #include "core/inspector/InspectorInstrumentation.h" |
| 18 #include "public/platform/Platform.h" | 18 #include "public/platform/Platform.h" |
| 19 #include "wtf/CurrentTime.h" | 19 #include "wtf/CurrentTime.h" |
| 20 | 20 |
| (...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 } | 292 } |
| 293 } | 293 } |
| 294 | 294 |
| 295 DEFINE_TRACE(PerformanceMonitor) { | 295 DEFINE_TRACE(PerformanceMonitor) { |
| 296 visitor->trace(m_localRoot); | 296 visitor->trace(m_localRoot); |
| 297 visitor->trace(m_taskExecutionContext); | 297 visitor->trace(m_taskExecutionContext); |
| 298 visitor->trace(m_subscriptions); | 298 visitor->trace(m_subscriptions); |
| 299 } | 299 } |
| 300 | 300 |
| 301 } // namespace blink | 301 } // namespace blink |
| OLD | NEW |