HomeSort by relevance Sort by last modified time
    Searched refs:screenAvailableRect (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/frame/
Screen.cpp 89 return lroundf(screenAvailableRect(m_frame->view()).x() * host->deviceScaleFactor());
90 return static_cast<int>(screenAvailableRect(m_frame->view()).x());
99 return lroundf(screenAvailableRect(m_frame->view()).y() * host->deviceScaleFactor());
100 return static_cast<int>(screenAvailableRect(m_frame->view()).y());
109 return lroundf(screenAvailableRect(m_frame->view()).height() * host->deviceScaleFactor());
110 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).height());
119 return lroundf(screenAvailableRect(m_frame->view()).width() * host->deviceScaleFactor());
120 return static_cast<unsigned>(screenAvailableRect(m_frame->view()).width());
LocalDOMWindow.cpp 269 FloatRect screen = screenAvailableRect(frame.view());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformScreen.h 46 PLATFORM_EXPORT FloatRect screenAvailableRect(Widget*);
PlatformScreen.cpp 83 FloatRect screenAvailableRect(Widget* widget)
  /external/chromium_org/third_party/WebKit/Source/core/page/
WindowFeatures.cpp 168 WindowFeatures::WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect)
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.y() + (screenAvailableRect.height() - height) / 2
    [all...]
WindowFeatures.h 60 WindowFeatures(const String& dialogFeaturesString, const FloatRect& screenAvailableRect);
  /external/chromium_org/third_party/WebKit/Source/web/
PopupContainer.cpp 193 FloatRect screen = screenAvailableRect(m_frameView.get());

Completed in 2977 milliseconds