| Index: Source/core/inspector/InspectorInstrumentationCustomInl.h
|
| diff --git a/Source/core/inspector/InspectorInstrumentationCustomInl.h b/Source/core/inspector/InspectorInstrumentationCustomInl.h
|
| index c81c1f5d8de5be8775b35b36477b0a0cd89e054e..943be80aea8d23a7656abdb9ec7250bfe0b489eb 100644
|
| --- a/Source/core/inspector/InspectorInstrumentationCustomInl.h
|
| +++ b/Source/core/inspector/InspectorInstrumentationCustomInl.h
|
| @@ -54,10 +54,10 @@ inline bool isDebuggerPaused(LocalFrame* frame)
|
| return false;
|
| }
|
|
|
| -inline bool collectingHTMLParseErrors(Page* page)
|
| +inline bool collectingHTMLParseErrors(Document* document)
|
| {
|
| FAST_RETURN_IF_NO_FRONTENDS(false);
|
| - if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(page))
|
| + if (InstrumentingAgents* instrumentingAgents = instrumentingAgentsFor(document))
|
| return collectingHTMLParseErrorsImpl(instrumentingAgents);
|
| return false;
|
| }
|
|
|