For #14546 - Speculative fix for ANR

pull/122/head^2
codrut.topliceanu 4 years ago committed by ekager
parent 057ac0d8b2
commit b892af773e

@ -92,6 +92,7 @@ class BrowserToolbarView(
with(container.context) {
val sessionManager = components.core.sessionManager
val isPinningSupported = components.useCases.webAppUseCases.isPinningSupported()
if (toolbarPosition == ToolbarPosition.TOP) {
val offsetChangedListener =
@ -173,7 +174,8 @@ class BrowserToolbarView(
lifecycleOwner = lifecycleOwner,
sessionManager = sessionManager,
store = components.core.store,
bookmarksStorage = bookmarkStorage
bookmarksStorage = bookmarkStorage,
isPinningSupported = isPinningSupported
)
view.display.setMenuDismissAction {
view.invalidateActions()

@ -50,7 +50,8 @@ class DefaultToolbarMenu(
shouldReverseItems: Boolean,
private val onItemTapped: (ToolbarMenu.Item) -> Unit = {},
private val lifecycleOwner: LifecycleOwner,
private val bookmarksStorage: BookmarksStorage
private val bookmarksStorage: BookmarksStorage,
val isPinningSupported: Boolean
) : ToolbarMenu {
private var currentUrlIsBookmarked = false
@ -153,11 +154,11 @@ class DefaultToolbarMenu(
// Predicates that need to be repeatedly called as the session changes
private fun canAddToHomescreen(): Boolean =
session != null && context.components.useCases.webAppUseCases.isPinningSupported() &&
session != null && isPinningSupported &&
!context.components.useCases.webAppUseCases.isInstallable()
private fun canInstall(): Boolean =
session != null && context.components.useCases.webAppUseCases.isPinningSupported() &&
session != null && isPinningSupported &&
context.components.useCases.webAppUseCases.isInstallable()
private fun shouldShowOpenInApp(): Boolean = session?.let { session ->

Loading…
Cancel
Save