Revision control

Copy as Markdown

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.focus.media
import mozilla.components.browser.state.store.BrowserStore
import mozilla.components.concept.base.crash.CrashReporting
import mozilla.components.feature.media.service.AbstractMediaSessionService
import mozilla.components.support.base.android.NotificationsDelegate
import org.mozilla.focus.ext.components
/**
* [AbstractMediaSessionService] implementation for injecting [BrowserStore] singleton.
*/
class MediaSessionService : AbstractMediaSessionService() {
override val crashReporter: CrashReporting? by lazy { components.crashReporter }
override val store: BrowserStore by lazy { components.store }
override val notificationsDelegate: NotificationsDelegate by lazy { components.notificationsDelegate }
}