1
0
Fork 0

Update to Android Components 52.0.20200722023149

Fixes breaking APIs in SyncedTabsFeature and
BookmarksStorageSuggestionProvider
master
Jonathan Almeida 2020-07-21 23:09:49 -04:00 committed by Jonathan Almeida
parent 638e7c6e47
commit d5fbc17ccf
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"
}