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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.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/InspectorInstrumentation.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
index 607b3a797e02849a5ed1e81d63a407cc4820cd55..a04b05b64793f709434fdde6d92cddc01979af3e 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.cpp
@@ -30,7 +30,7 @@
#include "core/inspector/InspectorInstrumentation.h"
-#include "core/InstrumentingAgents.h"
+#include "core/InspectorInstrumentationAgents.h"
#include "core/events/Event.h"
#include "core/events/EventTarget.h"
#include "core/frame/FrameHost.h"
@@ -158,7 +158,7 @@ void continueWithPolicyIgnore(LocalFrame* frame,
didReceiveResourceResponseButCanceled(frame, loader, identifier, r, resource);
}
-InstrumentingAgents* instrumentingAgentsFor(
+InspectorInstrumentationAgents* instrumentingAgentsFor(
WorkerGlobalScope* workerGlobalScope) {
if (!workerGlobalScope)
return nullptr;
@@ -168,7 +168,7 @@ InstrumentingAgents* instrumentingAgentsFor(
return nullptr;
}
-InstrumentingAgents* instrumentingAgentsForNonDocumentContext(
+InspectorInstrumentationAgents* instrumentingAgentsForNonDocumentContext(
ExecutionContext* context) {
if (context->isWorkerGlobalScope())
return instrumentingAgentsFor(toWorkerGlobalScope(context));

Powered by Google App Engine
This is Rietveld 408576698