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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h

Issue 1907663005: [DevTools] Move v8-related instrumentation from agents to InspectorSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1889533002
Patch Set: profiler agent restore starts instrumenting Created 4 years, 8 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/InspectorDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
index afcdf782851531e6299d7617cd7e20dbd48349e4..e9ab64169db53b6b0337e83efe127febfffa074f 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
@@ -76,17 +76,6 @@ public:
void setBlackboxPatterns(ErrorString*, PassOwnPtr<protocol::Array<String16>> patterns) override;
void setBlackboxedRanges(ErrorString*, const String16& scriptId, PassOwnPtr<protocol::Array<protocol::Debugger::ScriptPosition>> positions) override;
- // Called by InspectorInstrumentation.
- void scriptExecutionBlockedByCSP(const String& directiveText);
-
- // Async stack implementation.
- void asyncTaskScheduled(const String& taskName, void* task);
- void asyncTaskScheduled(const String& taskName, void* task, bool recurring);
- void asyncTaskCanceled(void* task);
- void allAsyncTasksCanceled();
- void asyncTaskStarted(void* task);
- void asyncTaskFinished(void* task);
-
// InspectorBaseAgent overrides.
void init(InstrumentingAgents*, protocol::Frontend*, protocol::Dispatcher*, protocol::DictionaryValue*) override;
void dispose() override;

Powered by Google App Engine
This is Rietveld 408576698