Searched refs:screenAvailableRect (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DScreen.cpp88 return lroundf(screenAvailableRect(m_frame->view()).x() * host->deviceScaleFactor());
89 return static_cast<int>(screenAvailableRect(m_frame->view()).x());
98 return lroundf(screenAvailableRect(m_frame->view()).y() * host->deviceScaleFactor());
99 return static_cast<int>(screenAvailableRect(m_frame->view()).y());
108 return lroundf(screenAvailableRect(m_frame->view()).height() * host->deviceScaleFactor());
109 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).height());
118 return lroundf(screenAvailableRect(m_frame->view()).width() * host->deviceScaleFactor());
119 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).width());
H A DLocalDOMWindow.cpp278 FloatRect screen = screenAvailableRect(frame.view());
1850 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_frame->view()));
/external/chromium_org/third_party/WebKit/Source/platform/
H A DPlatformScreen.h44 PLATFORM_EXPORT FloatRect screenAvailableRect(Widget*);
H A DPlatformScreen.cpp83 FloatRect screenAvailableRect(Widget* widget) function in namespace:blink
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DWindowFeatures.cpp168 WindowFeatures::WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect) argument
190 width = floatFeature(features, "dialogwidth", 100, screenAvailableRect.width(), 620); // default here came from frame size of dialog in MacIE
191 height = floatFeature(features, "dialogheight", 100, screenAvailableRect.height(), 450); // default here came from frame size of dialog in MacIE
193 x = floatFeature(features, "dialogleft", screenAvailableRect.x(), screenAvailableRect.maxX() - width, -1);
195 y = floatFeature(features, "dialogtop", screenAvailableRect.y(), screenAvailableRect.maxY() - height, -1);
200 x = screenAvailableRect.x() + (screenAvailableRect.width() - width) / 2;
204 y = screenAvailableRect
[all...]
H A DWindowFeatures.h60 WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect);
/external/chromium_org/third_party/WebKit/Source/web/
H A DPopupContainer.cpp191 FloatRect screen = screenAvailableRect(m_frameView.get());

Completed in 5910 milliseconds