InstrumentingAgents* instrumentingAgentsFor(Page* page)
{
    if (!page)
        return 0;
    return instrumentationForPage(page);
}
Exemple #2
0
InstrumentingAgents* InspectorInstrumentation::instrumentingAgentsForPage(Page* page)
{
    if (!page)
        return 0;
    return instrumentationForPage(page);
}
InstrumentingAgents* instrumentingAgentsFor(FrameHost* host)
{
    return instrumentationForPage(&host->page());
}