Index: Source/core/inspector/InspectorInstrumentation.cpp |
diff --git a/Source/core/inspector/InspectorInstrumentation.cpp b/Source/core/inspector/InspectorInstrumentation.cpp |
index b4e27eeaca524e8873628f8c0efb6264852cbfa5..da75408708a1646ead32f8274b4b9560140c4667 100644 |
--- a/Source/core/inspector/InspectorInstrumentation.cpp |
+++ b/Source/core/inspector/InspectorInstrumentation.cpp |
@@ -230,6 +230,12 @@ void InspectorInstrumentation::didInvalidateStyleAttrImpl(InstrumentingAgents* i |
domDebuggerAgent->didInvalidateStyleAttr(node); |
} |
+void InspectorInstrumentation::activeStyleSheetsUpdatedImpl(InstrumentingAgents* instrumentingAgents, const Vector<RefPtr<StyleSheet> >& newSheets) |
+{ |
+ if (InspectorCSSAgent* cssAgent = instrumentingAgents->inspectorCSSAgent()) |
+ cssAgent->activeStyleSheetsUpdated(newSheets); |
+} |
+ |
void InspectorInstrumentation::frameWindowDiscardedImpl(InstrumentingAgents* instrumentingAgents, DOMWindow* window) |
{ |
if (InspectorConsoleAgent* consoleAgent = instrumentingAgents->inspectorConsoleAgent()) |