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

Unified Diff: third_party/WebKit/Source/core/inspector/WorkerInspectorController.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/inspector/WorkerInspectorController.cpp
diff --git a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
index aa6fa92f3c97e5b2502c6d331cc280bab8f6f2c1..cd95a9de136375e0b057037ebf88008efecd31b1 100644
--- a/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
+++ b/third_party/WebKit/Source/core/inspector/WorkerInspectorController.cpp
@@ -30,7 +30,7 @@
#include "core/inspector/WorkerInspectorController.h"
-#include "core/InstrumentingAgents.h"
+#include "core/InspectorInstrumentationAgents.h"
#include "core/inspector/InspectorInstrumentation.h"
#include "core/inspector/InspectorLogAgent.h"
#include "core/inspector/InspectorTraceEvents.h"
@@ -55,7 +55,7 @@ WorkerInspectorController::WorkerInspectorController(
WorkerThreadDebugger* debugger)
: m_debugger(debugger),
m_thread(thread),
- m_instrumentingAgents(new InstrumentingAgents()) {
+ m_instrumentingAgents(new InspectorInstrumentationAgents()) {
m_instrumentingAgents->addInspectorTraceEvents(new InspectorTraceEvents());
}

Powered by Google App Engine
This is Rietveld 408576698