2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-17 15:26:23 +00:00

[fenix] Update to Android Components 52.0.20200722023149

Fixes breaking APIs in SyncedTabsFeature and
BookmarksStorageSuggestionProvider
This commit is contained in:
Jonathan Almeida 2020-07-21 23:09:49 -04:00 committed by Jonathan Almeida
parent 4958ea8855
commit 1df7dce5d0
3 changed files with 6 additions and 5 deletions

View File

@ -119,10 +119,10 @@ class AwesomeBarView(
bookmarksStorageSuggestionProvider =
BookmarksStorageSuggestionProvider(
components.core.bookmarksStorage,
loadUrlUseCase,
components.core.icons,
engineForSpeculativeConnects
bookmarksStorage = components.core.bookmarksStorage,
loadUrlUseCase = loadUrlUseCase,
icons = components.core.icons,
engine = engineForSpeculativeConnects
)
val searchBitmap = getDrawable(context, R.drawable.ic_search)!!.apply {

View File

@ -37,6 +37,7 @@ class SyncedTabsFragment : LibraryPageFragment<Tab>() {
syncedTabsFeature.set(
feature = SyncedTabsFeature(
context = requireContext(),
storage = backgroundServices.syncedTabsStorage,
accountManager = backgroundServices.accountManager,
view = synced_tabs_layout,

View File

@ -3,5 +3,5 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
object AndroidComponents {
const val VERSION = "51.0.20200721130108"
const val VERSION = "52.0.20200722023149"
}