Changeset 176996 in webkit
- Timestamp:
- Dec 8, 2014, 5:20:52 PM (10 years ago)
- Location:
- trunk/Source/WebKit2
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit2/ChangeLog
r176980 r176996 1 2014-12-08 Dan Bernstein <mitz@apple.com> 2 3 <rdar://problem/18905383> [iOS] Crash due to null m_webPageProxyForBackForwardListForCurrentSwipe in ViewGestureController::endSwipeGesture 4 https://bugs.webkit.org/show_bug.cgi?id=138750 5 6 Reviewed by Tim Horton. 7 8 The snapshot for the current gesture was being removed mid-gesture by the callback from 9 dispatchAfterEnsuringDrawing scheduled by the previous gesture. The fix is to ignore the 10 callback for a gesture if it is made after the snapshot for that gesture has already been 11 removed (which can happen as a result of the watchdog timer firing). 12 13 * UIProcess/ios/ViewGestureControllerIOS.mm: 14 (WebKit::ViewGestureController::ViewGestureController): Initialize new member variable. 15 (WebKit::addLogEntry): Fixed the log message format. 16 (WebKit::ViewGestureController::endSwipeGesture): When dispatchAfterEnsuringDrawing() calls 17 us back, bail out if the gesture snapshot has already been removed. 18 (WebKit::ViewGestureController::removeSwipeSnapshot): Increment 19 m_gesturePendingSnapshotRemoval. 20 * UIProcess/mac/ViewGestureController.h: Added m_gesturePendingSnapshotRemoval member 21 variable. 22 1 23 2014-12-08 Anders Carlsson <andersca@apple.com> 2 24 … … 3734 3756 https://bugs.webkit.org/show_bug.cgi?id=138728 3735 3757 3736 Reviewed by Tim H Orton.3758 Reviewed by Tim Horton. 3737 3759 3738 3760 Moved the implementations from the category to the class. -
trunk/Source/WebKit2/UIProcess/ios/ViewGestureControllerIOS.mm
r176204 r176996 147 147 , m_snapshotRemovalTargetRenderTreeSize(0) 148 148 , m_shouldRemoveSnapshotWhenTargetRenderTreeSizeHit(false) 149 , m_gesturePendingSnapshotRemoval(0) 149 150 { 150 151 viewGestureControllersForAllPages().add(webPageProxy.pageID(), this); … … 179 180 WTFGetBacktrace(stack, &size); 180 181 StringBuilder stringBuilder; 181 stringBuilder.append(String::format("%f [ ]", CFAbsoluteTimeGetCurrent()));182 stringBuilder.append(String::format("%f [ ", CFAbsoluteTimeGetCurrent())); 182 183 for (int i = 2; i < size; ++i) { 183 184 if (i > 2) … … 336 337 if (auto drawingArea = m_webPageProxy.drawingArea()) { 337 338 uint64_t pageID = m_webPageProxy.pageID(); 338 drawingArea->dispatchAfterEnsuringDrawing([pageID] (CallbackBase::Error error) { 339 uint64_t gesturePendingSnapshotRemoval = m_gesturePendingSnapshotRemoval; 340 drawingArea->dispatchAfterEnsuringDrawing([pageID, gesturePendingSnapshotRemoval] (CallbackBase::Error error) { 339 341 auto gestureControllerIter = viewGestureControllersForAllPages().find(pageID); 340 if (gestureControllerIter != viewGestureControllersForAllPages().end() )342 if (gestureControllerIter != viewGestureControllersForAllPages().end() && gestureControllerIter->value->m_gesturePendingSnapshotRemoval == gesturePendingSnapshotRemoval) 341 343 gestureControllerIter->value->willCommitPostSwipeTransitionLayerTree(error == CallbackBase::Error::None); 342 344 }); … … 394 396 return; 395 397 398 ++m_gesturePendingSnapshotRemoval; 399 396 400 #if USE(IOSURFACE) 397 401 if (m_currentSwipeSnapshotSurface) -
trunk/Source/WebKit2/UIProcess/mac/ViewGestureController.h
r176133 r176996 216 216 WeakObjCPtr<WKWebView> m_alternateBackForwardListSourceView; 217 217 RefPtr<WebPageProxy> m_webPageProxyForBackForwardListForCurrentSwipe; 218 uint64_t m_gesturePendingSnapshotRemoval; 218 219 #if ENABLE(VIEW_GESTURE_CONTROLLER_TRACING) 219 220 Vector<String> m_logEntries;
Note:
See TracChangeset
for help on using the changeset viewer.