Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: third_party/WebKit/Source/core/frame/PerformanceMonitor.cpp

Issue 2760363002: [instrumentation] Generalize instrumentation to be used beyond the core layer (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698