Home | History | Annotate | Download | only in inspector

Lines Matching refs:Page

35 #include "core/page/Chrome.h"
36 #include "core/page/EventHandler.h"
37 #include "core/page/Frame.h"
38 #include "core/page/FrameView.h"
39 #include "core/page/Page.h"
84 void ConvertInspectorPoint(WebCore::Page* page, const WebCore::IntPoint& point, WebCore::IntPoint* convertedPoint, WebCore::IntPoint* globalPoint)
86 *convertedPoint = page->mainFrame()->view()->convertToContainingWindow(point);
87 *globalPoint = page->chrome().rootViewToScreen(WebCore::IntRect(point, WebCore::IntSize(0, 0))).location();
94 InspectorInputAgent::InspectorInputAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* inspectorState, Page* page, InspectorClient* client)
96 , m_page(page), m_client(client)