internal void CancelAndDismissExistingSessions() { AssertIsForeground(); if (CurrentSession != null) { CurrentSession.Cancel(); CurrentSession = null; } if (QuickInfoSession != null) { QuickInfoSession.Dismiss(); QuickInfoSession = null; TEST_MostRecentQuickInfoContent = null; } }
internal void CancelAndDismissExistingSessions() { AssertIsForeground(); if (CurrentSession != null) { CurrentSession.Cancel(); CurrentSession = null; } if (_toolTipPresenter != null) { _toolTipPresenter.Dismiss(); _toolTipPresenter = null; } // For test purposes only! TEST_MostRecentToolTipContent = null; }
internal void CancelAndDismissExistingSessions() { ThreadingContext.ThrowIfNotOnUIThread(); if (CurrentSession != null) { CurrentSession.Cancel(); CurrentSession = null; } if (_toolTipPresenter != null) { _toolTipPresenter.Dismiss(); _toolTipPresenter = null; } // For test purposes only! TEST_MostRecentToolTipContent = null; }