| Index: Source/core/inspector/InspectorInstrumentation.cpp
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.cpp b/Source/core/inspector/InspectorInstrumentation.cpp
|
| index 79b3ffc20caba58e9ee6e803e823bb2157f20e9f..ee52ddc120ec4331b16f028746222155d5a7f116 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.cpp
|
| +++ b/Source/core/inspector/InspectorInstrumentation.cpp
|
| @@ -216,10 +216,10 @@ void didInvalidateStyleAttrImpl(InstrumentingAgents* instrumentingAgents, Node*
|
| domDebuggerAgent->didInvalidateStyleAttr(node);
|
| }
|
|
|
| -void activeStyleSheetsUpdatedImpl(InstrumentingAgents* instrumentingAgents, const Vector<RefPtr<StyleSheet> >& newSheets)
|
| +void activeStyleSheetsUpdatedImpl(InstrumentingAgents* instrumentingAgents, Document* document, const Vector<RefPtr<StyleSheet> >& newSheets)
|
| {
|
| if (InspectorCSSAgent* cssAgent = instrumentingAgents->inspectorCSSAgent())
|
| - cssAgent->activeStyleSheetsUpdated(newSheets);
|
| + cssAgent->activeStyleSheetsUpdated(document, newSheets);
|
| }
|
|
|
| void frameWindowDiscardedImpl(InstrumentingAgents* instrumentingAgents, DOMWindow* window)
|
|
|