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

Unified Diff: Source/core/inspector/InspectorController.cpp

Issue 201363002: DevTools: defer styles delta calculation to until the end of the task. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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: Source/core/inspector/InspectorController.cpp
diff --git a/Source/core/inspector/InspectorController.cpp b/Source/core/inspector/InspectorController.cpp
index f3f7838c3dee42a9b19e6f149eacd583dd348069..cf4c98d4b41860b692700f52c652c010808ec552 100644
--- a/Source/core/inspector/InspectorController.cpp
+++ b/Source/core/inspector/InspectorController.cpp
@@ -420,6 +420,8 @@ void InspectorController::willProcessTask()
void InspectorController::didProcessTask()
{
+ if (InspectorCSSAgent* cssAgent = m_instrumentingAgents->inspectorCSSAgent())
+ cssAgent->didProcessTask();
if (InspectorTimelineAgent* timelineAgent = m_instrumentingAgents->inspectorTimelineAgent())
timelineAgent->didProcessTask();
if (InspectorProfilerAgent* profilerAgent = m_instrumentingAgents->inspectorProfilerAgent())

Powered by Google App Engine
This is Rietveld 408576698