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

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

Issue 2189263004: [DevTools] Replace profiling{Started,Stopped} with explicit setOverlaySuspended call. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merged Created 4 years, 5 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 73e7f6f1655cb8597eb3f77beba0f44253d460f9..2e07600344ded6319880171faa99a9ba8f337369 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorSession.cpp
@@ -134,16 +134,6 @@ 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();
-}
-
DEFINE_TRACE(InspectorSession)
{
visitor->trace(m_instrumentingAgents);

Powered by Google App Engine
This is Rietveld 408576698