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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/frame/LocalFrame.cpp
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.cpp b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
index 429c13655b0cf65c691e469753ecbc0f954cd5cb..69f80ab7c2ef6d7e66105fbb74ab8a5738b6d774 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.cpp
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.cpp
@@ -33,7 +33,7 @@
#include <memory>
#include "bindings/core/v8/ScriptController.h"
-#include "core/InstrumentingAgents.h"
+#include "core/InspectorInstrumentationAgents.h"
#include "core/dom/ChildFrameDisconnector.h"
#include "core/dom/DocumentType.h"
#include "core/dom/StyleChangeReason.h"
@@ -869,7 +869,7 @@ inline LocalFrame::LocalFrame(LocalFrameClient* client,
m_interfaceProvider(interfaceProvider),
m_interfaceRegistry(interfaceRegistry) {
if (isLocalRoot()) {
- m_instrumentingAgents = new InstrumentingAgents();
+ m_instrumentingAgents = new InspectorInstrumentationAgents();
m_performanceMonitor = new PerformanceMonitor(this);
} else {
m_instrumentingAgents = localFrameRoot()->m_instrumentingAgents;

Powered by Google App Engine
This is Rietveld 408576698