22 lines
1.1 KiB
Kotlin
22 lines
1.1 KiB
Kotlin
/* 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 net.waterfox.android.downloads
|
|
|
|
import mozilla.components.browser.state.store.BrowserStore
|
|
import mozilla.components.feature.downloads.AbstractFetchDownloadService
|
|
import mozilla.components.feature.downloads.DefaultFileSizeFormatter
|
|
import mozilla.components.feature.downloads.FileSizeFormatter
|
|
import mozilla.components.support.base.android.NotificationsDelegate
|
|
import net.waterfox.android.R
|
|
import net.waterfox.android.ext.components
|
|
|
|
class DownloadService : AbstractFetchDownloadService() {
|
|
override val httpClient by lazy { components.core.client }
|
|
override val store: BrowserStore by lazy { components.core.store }
|
|
override val style: Style by lazy { Style(R.color.fx_mobile_text_color_accent) }
|
|
override val notificationsDelegate: NotificationsDelegate by lazy { components.notificationsDelegate }
|
|
override val fileSizeFormatter: FileSizeFormatter by lazy { DefaultFileSizeFormatter(this) }
|
|
}
|