Use Mozilla Android Components 34.0.0-SNAPSHOT. (#8527)

fennec/beta
Sebastian Kaspari 4 years ago committed by GitHub
parent 2daa485931
commit d7e1259e7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -126,7 +126,7 @@ class Core(private val context: Context) {
val sessionManager by lazy { val sessionManager by lazy {
SessionManager(engine, store).also { sessionManager -> SessionManager(engine, store).also { sessionManager ->
// Install the "icons" WebExtension to automatically load icons for every visited website. // Install the "icons" WebExtension to automatically load icons for every visited website.
icons.install(engine, sessionManager) icons.install(engine, store)
// Show an ongoing notification when recording devices (camera, microphone) are used by web content // Show an ongoing notification when recording devices (camera, microphone) are used by web content
RecordingDevicesNotificationFeature(context, sessionManager) RecordingDevicesNotificationFeature(context, sessionManager)

@ -7,7 +7,6 @@ package org.mozilla.fenix.home
import android.animation.Animator import android.animation.Animator
import android.content.Context import android.content.Context
import android.content.DialogInterface import android.content.DialogInterface
import android.graphics.Bitmap
import android.graphics.drawable.BitmapDrawable import android.graphics.drawable.BitmapDrawable
import android.os.Bundle import android.os.Bundle
import android.view.Gravity import android.view.Gravity
@ -112,10 +111,6 @@ class HomeFragment : Fragment() {
override fun onTitleChanged(session: Session, title: String) { override fun onTitleChanged(session: Session, title: String) {
if (deleteAllSessionsJob == null) emitSessionChanges() if (deleteAllSessionsJob == null) emitSessionChanges()
} }
override fun onIconChanged(session: Session, icon: Bitmap?) {
if (deleteAllSessionsJob == null) emitSessionChanges()
}
} }
private val collectionStorageObserver = object : TabCollectionStorage.Observer { private val collectionStorageObserver = object : TabCollectionStorage.Observer {

@ -32,7 +32,7 @@ object Versions {
const val androidx_work = "2.2.0" const val androidx_work = "2.2.0"
const val google_material = "1.1.0" const val google_material = "1.1.0"
const val mozilla_android_components = "33.0.0-SNAPSHOT" const val mozilla_android_components = "34.0.0-SNAPSHOT"
// Note that android-components also depends on application-services, // Note that android-components also depends on application-services,
// and in fact is our main source of appservices-related functionality. // and in fact is our main source of appservices-related functionality.
// The version number below tracks the application-services version // The version number below tracks the application-services version

Loading…
Cancel
Save