Index: Source/core/inspector/InspectorInstrumentationInl.h |
diff --git a/Source/core/inspector/InspectorInstrumentationInl.h b/Source/core/inspector/InspectorInstrumentationInl.h |
index dffd386a706191139dc140663180318edf40b3a2..5459bf77c288402158cd8092e039f87e56dba842 100644 |
--- a/Source/core/inspector/InspectorInstrumentationInl.h |
+++ b/Source/core/inspector/InspectorInstrumentationInl.h |
@@ -43,7 +43,7 @@ void didModifyDOMAttrImpl(InstrumentingAgents*, Element*, const AtomicString& na |
void didRemoveDOMAttrImpl(InstrumentingAgents*, Element*, const AtomicString& name); |
void characterDataModifiedImpl(InstrumentingAgents*, CharacterData*); |
void didInvalidateStyleAttrImpl(InstrumentingAgents*, Node*); |
-void activeStyleSheetsUpdatedImpl(InstrumentingAgents*, const Vector<RefPtr<StyleSheet> >&); |
+void activeStyleSheetsUpdatedImpl(InstrumentingAgents*, Document*, const Vector<RefPtr<StyleSheet> >&); |
void frameWindowDiscardedImpl(InstrumentingAgents*, DOMWindow*); |
void mediaQueryResultChangedImpl(InstrumentingAgents*); |
void didCreateNamedFlowImpl(InstrumentingAgents*, Document*, NamedFlow*); |
@@ -204,7 +204,7 @@ inline void activeStyleSheetsUpdated(Document* document, const Vector<RefPtr<Sty |
{ |
FAST_RETURN_IF_NO_FRONTENDS(void()); |
if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsForDocument(document)) |
- activeStyleSheetsUpdatedImpl(instrumentingAgents, newSheets); |
+ activeStyleSheetsUpdatedImpl(instrumentingAgents, document, newSheets); |
} |
inline void frameWindowDiscarded(Frame* frame, DOMWindow* domWindow) |