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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorSession.cpp

Issue 1933573002: [DevTools] Remove last bits of logic from v8 agent wrappers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1913283003
Patch Set: rebased, fixed uninitialized variable Created 4 years, 7 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/InspectorSession.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
index f11042374a048725a02b4a4f4e7bd3bdac674bff..bfde487a09764dc241eae092ddf6a8ff2c432257 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -205,6 +205,26 @@ void InspectorSession::stopInstrumenting()
m_instrumentingAgents->removeInspectorSession(this);
}
+void InspectorSession::resumeStartup()
+{
+ m_client->resumeStartup();
+}
+
+bool InspectorSession::canExecuteScripts()
+{
+ return m_inspectedFrames ? m_inspectedFrames->root()->script().canExecuteScripts(NotAboutToExecuteScript) : true;
+}
+
+void InspectorSession::profilingStarted()
+{
+ m_client->profilingStarted();
+}
+
+void InspectorSession::profilingStopped()
+{
+ m_client->profilingStopped();
+}
+
void InspectorSession::forceContextsInAllFrames()
{
if (!m_inspectedFrames)

Powered by Google App Engine
This is Rietveld 408576698