Searched refs:originBoundsInRootView (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DMockPagePopupDriver.cpp45 static PassRefPtr<MockPagePopup> create(PagePopupClient*, const IntRect& originBoundsInRootView, Frame*);
50 MockPagePopup(PagePopupClient*, const IntRect& originBoundsInRootView, Frame*);
58 inline MockPagePopup::MockPagePopup(PagePopupClient* client, const IntRect& originBoundsInRootView, Frame* mainFrame) argument
68 m_iframe->setInlineStyleProperty(CSSPropertyLeft, originBoundsInRootView.x(), CSSPrimitiveValue::CSS_PX, true);
69 m_iframe->setInlineStyleProperty(CSSPropertyTop, originBoundsInRootView.maxY(), CSSPrimitiveValue::CSS_PX, true);
80 PassRefPtr<MockPagePopup> MockPagePopup::create(PagePopupClient* client, const IntRect& originBoundsInRootView, Frame* mainFrame) argument
82 return adoptRef(new MockPagePopup(client, originBoundsInRootView, mainFrame));
121 PagePopup* MockPagePopupDriver::openPagePopup(PagePopupClient* client, const IntRect& originBoundsInRootView) argument
128 m_mockPagePopup = MockPagePopup::create(client, originBoundsInRootView, m_mainFrame);
H A DMockPagePopupDriver.h51 virtual PagePopup* openPagePopup(PagePopupClient*, const IntRect& originBoundsInRootView) OVERRIDE;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPagePopupDriver.h37 virtual PagePopup* openPagePopup(PagePopupClient*, const IntRect& originBoundsInRootView) = 0;
H A DChromeClient.h232 // Creates a PagePopup object, and shows it beside originBoundsInRootView.
234 virtual PagePopup* openPagePopup(PagePopupClient*, const IntRect& originBoundsInRootView) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPagePopupImpl.h60 bool initialize(WebViewImpl*, WebCore::PagePopupClient*, const WebCore::IntRect& originBoundsInRootView);
H A DChromeClientImpl.cpp881 PagePopup* ChromeClientImpl::openPagePopup(PagePopupClient* client, const IntRect& originBoundsInRootView) argument
884 return m_pagePopupDriver->openPagePopup(client, originBoundsInRootView);
H A DWebViewImpl.h469 virtual WebCore::PagePopup* openPagePopup(WebCore::PagePopupClient*, const WebCore::IntRect& originBoundsInRootView) OVERRIDE;
H A DWebViewImpl.cpp1553 PagePopup* WebViewImpl::openPagePopup(PagePopupClient* client, const IntRect& originBoundsInRootView) argument
1563 if (!m_pagePopup->initialize(this, client, originBoundsInRootView)) {

Completed in 193 milliseconds