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

/macosx-10.10/WebKit2-7600.1.25/UIProcess/mac/
H A DViewGestureController.h118 void endSwipeGesture(WebBackForwardListItem* targetItem, _UIViewControllerTransitionContext *, bool cancelled);
143 void beginSwipeGesture(WebBackForwardListItem* targetItem, SwipeDirection);
144 void handleSwipeGesture(WebBackForwardListItem* targetItem, double progress, SwipeDirection);
145 void endSwipeGesture(WebBackForwardListItem* targetItem, bool cancelled);
H A DViewGestureControllerMac.mm400 RefPtr<WebBackForwardListItem> targetItem = (direction == SwipeDirection::Left) ? m_webPageProxy.backForwardList().backItem() : m_webPageProxy.backForwardList().forwardItem();
413 this->beginSwipeGesture(targetItem.get(), direction);
415 this->handleSwipeGesture(targetItem.get(), clampedProgress, direction);
419 this->endSwipeGesture(targetItem.get(), swipeCancelled);
522 void ViewGestureController::beginSwipeGesture(WebBackForwardListItem* targetItem, SwipeDirection direction)
559 if (ViewSnapshot* snapshot = targetItem->snapshot()) {
616 void ViewGestureController::handleSwipeGesture(WebBackForwardListItem* targetItem, double progress, SwipeDirection direction)
656 void ViewGestureController::endSwipeGesture(WebBackForwardListItem* targetItem, bool cancelled)
671 m_webPageProxy.navigationGestureDidEnd(false, *targetItem);
676 if (ViewSnapshot* snapshot = targetItem
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/History/
H A DWebHistoryItemPrivate.h59 - (WebHistoryItem *)targetItem;
H A DWebHistoryItem.mm559 - (WebHistoryItem *)targetItem
562 return kit(core(_private)->targetItem());
/macosx-10.10/WebKit2-7600.1.25/UIProcess/ios/
H A DViewGestureControllerIOS.mm180 WebBackForwardListItem* targetItem = direction == SwipeDirection::Left ? backForwardList.backItem() : backForwardList.forwardItem();
188 if (ViewSnapshot* snapshot = targetItem->snapshot()) {
231 m_webPageProxyForBackForwardListForCurrentSwipe->navigationGestureWillEnd(transitionCompleted, *targetItem);
233 [transitionContext _setCompletionHandler:^(_UIViewControllerTransitionContext *context, BOOL didComplete) { endSwipeGesture(targetItem, context, !didComplete); }];
250 void ViewGestureController::endSwipeGesture(WebBackForwardListItem* targetItem, _UIViewControllerTransitionContext *context, bool cancelled)
267 webPageProxyForBackForwardListForCurrentSwipe->navigationGestureDidEnd(false, *targetItem);
272 if (ViewSnapshot* snapshot = targetItem->snapshot())
275 m_webPageProxyForBackForwardListForCurrentSwipe->navigationGestureDidEnd(true, *targetItem);
276 m_webPageProxyForBackForwardListForCurrentSwipe->goToBackForwardItem(targetItem);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DHistoryController.cpp253 bool HistoryController::shouldStopLoadingForHistoryItem(HistoryItem* targetItem) const
259 if (m_currentItem->shouldDoSameDocumentNavigationTo(targetItem))
267 void HistoryController::goToItem(HistoryItem* targetItem, FrameLoadType type) argument
278 if (!m_frame.loader().client().shouldGoToHistoryItem(targetItem))
281 m_deferredItem = targetItem;
290 page->backForward().setCurrentItem(targetItem);
297 recursiveSetProvisionalItem(targetItem, currentItem.get());
300 recursiveGoToItem(targetItem, currentItem.get(), type);
795 // The item that was the target of the user's navigation is designated as the "targetItem".
/macosx-10.10/WebCore-7600.1.25/history/
H A DHistoryItem.cpp419 if (HistoryItem* match = m_children[i]->targetItem())
425 HistoryItem* HistoryItem::targetItem() function in class:WebCore::HistoryItem
H A DHistoryItem.h147 HistoryItem* targetItem();

Completed in 202 milliseconds