Searched defs:viewSize (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DUpdateInfo.h50 WebCore::IntSize viewSize; member in class:WebKit::UpdateInfo
H A DWebPageCreationParameters.h47 WebCore::IntSize viewSize; member in struct:WebKit::WebPageCreationParameters
/external/webkit/Source/WebKit2/UIProcess/
H A DChunkedUpdateDrawingAreaProxy.cpp113 IntSize viewSize = updateChunk->rect().size(); local
115 if (viewSize != m_size)
H A DTiledDrawingAreaProxy.cpp112 void TiledDrawingAreaProxy::didSetSize(const IntSize& viewSize) argument
117 if (viewSize != m_lastSetViewSize)
H A DWebPageProxy.cpp625 IntSize WebPageProxy::viewSize() const function in class:WebKit::WebPageProxy
627 return m_pageClient->viewSize();
2803 parameters.viewSize = m_pageClient->viewSize();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DChunkedUpdateDrawingArea.cpp116 void ChunkedUpdateDrawingArea::setSize(const IntSize& viewSize) argument
118 ASSERT_ARG(viewSize, !viewSize.isEmpty());
123 m_webPage->setSize(viewSize);
135 UpdateChunk updateChunk(IntRect(0, 0, viewSize.width(), viewSize.height()));
H A DTiledDrawingArea.cpp101 void TiledDrawingArea::setSize(const IntSize& viewSize) argument
104 ASSERT_ARG(viewSize, !viewSize.isEmpty());
106 m_webPage->setSize(viewSize);
110 WebProcess::shared().connection()->deprecatedSend(DrawingAreaProxyLegacyMessage::DidSetSize, m_webPage->pageID(), CoreIPC::In(viewSize));
H A DWebPage.cpp152 : m_viewSize(parameters.viewSize)
555 void WebPage::setSize(const WebCore::IntSize& viewSize) argument
563 if (m_viewSize == viewSize)
568 frame->view()->resize(viewSize);
570 m_drawingArea->setNeedsDisplay(IntRect(IntPoint(0, 0), viewSize));
572 m_viewSize = viewSize;
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.cpp48 static RectsAlignment alignmentForRects(FocusDirection, const IntRect&, const IntRect&, const IntSize& viewSize);
51 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize);
98 static RectsAlignment alignmentForRects(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize) argument
101 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize))
243 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize) argument
249 return curRect.x() - targetRect.maxX() > viewSize.width();
251 return targetRect.x() - curRect.maxX() > viewSize.width();
253 return curRect.y() - targetRect.maxY() > viewSize.height();
255 return targetRect.y() - curRect.maxY() > viewSize.height();
678 IntSize viewSize local
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestShell.cpp493 WebSize viewSize = m_webView->size(); local
494 int width = viewSize.width;
495 int height = viewSize.height;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage.cpp156 WebCore::IntSize QWKPagePrivate::viewSize() function in class:QWKPagePrivate
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebView.cpp377 WebCore::IntSize WebView::viewSize() function in class:WebKit::WebView
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.cpp948 WebCore::IntSize WebView::viewSize() function in class:WebKit::WebView

Completed in 886 milliseconds