Searched defs:viewBounds (Results 1 - 2 of 2) sorted by relevance

/external/webkit/WebKit/android/nav/
H A DCachedHistory.cpp65 void CachedHistory::pinMaxMin(const WebCore::IntRect& viewBounds) argument
67 if (mMinWorkingHorizontal < viewBounds.y() ||
68 mMinWorkingHorizontal >= viewBounds.bottom())
69 mMinWorkingHorizontal = viewBounds.y();
70 if (mMaxWorkingHorizontal > viewBounds.bottom() ||
71 mMaxWorkingHorizontal <= viewBounds.y())
72 mMaxWorkingHorizontal = viewBounds.bottom();
73 if (mMinWorkingVertical < viewBounds.x() ||
74 mMinWorkingVertical >= viewBounds.right())
75 mMinWorkingVertical = viewBounds
93 setWorking(CachedFrame::Direction newMove, const CachedFrame* cursorFrame, const CachedNode* cursor, const WebCore::IntRect& viewBounds) argument
[all...]
H A DCacheBuilder.cpp2772 WebCore::IntRect viewBounds = frame->view()->platformWidget()->getBounds(); local
2774 viewBounds.setLocation(WebCore::IntPoint(x, y));
2775 cachedFrame->setLocalViewBounds(viewBounds);

Completed in 64 milliseconds