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

Unified Diff: Source/web/WebDevToolsAgentImpl.cpp

Issue 1073863003: DevTools: remove Canvas profiler from DevTools source base. See details in the bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: tests gone Created 5 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
« no previous file with comments | « Source/devtools/scripts/compile_frontend.py ('k') | public/blink_resources.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDevToolsAgentImpl.cpp
diff --git a/Source/web/WebDevToolsAgentImpl.cpp b/Source/web/WebDevToolsAgentImpl.cpp
index 1fc436827e03ce2b40ba041c235946a2da74e7c2..f947f9bd138c65b1e39514fe49245fa22bfc3be4 100644
--- a/Source/web/WebDevToolsAgentImpl.cpp
+++ b/Source/web/WebDevToolsAgentImpl.cpp
@@ -45,7 +45,6 @@
#include "core/inspector/InspectorAnimationAgent.h"
#include "core/inspector/InspectorApplicationCacheAgent.h"
#include "core/inspector/InspectorCSSAgent.h"
-#include "core/inspector/InspectorCanvasAgent.h"
#include "core/inspector/InspectorDOMAgent.h"
#include "core/inspector/InspectorDOMDebuggerAgent.h"
#include "core/inspector/InspectorDebuggerAgent.h"
@@ -472,8 +471,6 @@ void WebDevToolsAgentImpl::initializeDeferredAgents()
m_agents.append(InspectorHeapProfilerAgent::create(injectedScriptManager));
- m_agents.append(InspectorCanvasAgent::create(m_pageAgent, injectedScriptManager));
-
m_pageAgent->setDeferredAgents(debuggerAgent, m_cssAgent);
PageScriptDebugServer* scriptDebugServer = PageScriptDebugServer::instance();
@@ -733,8 +730,6 @@ void WebDevToolsAgentImpl::didProcessTask()
return;
if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspectorProfilerAgent())
profilerAgent->didProcessTask();
- if (InspectorCanvasAgent* canvasAgent = m_instrumentingAgents->inspectorCanvasAgent())
- canvasAgent->didProcessTask();
TRACE_EVENT_END0(TRACE_DISABLED_BY_DEFAULT("devtools.timeline"), "Program");
flushPendingProtocolNotifications();
}
« no previous file with comments | « Source/devtools/scripts/compile_frontend.py ('k') | public/blink_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698