use of org.chromium.chrome.browser.download.DownloadInfo in project AndroidChromium by JackyAndroid.
the class OfflinePageNotificationBridge method notifyDownloadProgress.
/**
* Called by offline page backend to notify the user of download progress.
* @param context Context to show notifications.
* @param guid GUID of a request to download a page related to the notification.
* @param url URL of the page to download.
* @param startTime Time of the request.
* @param displayName Name to be displayed on notification.
*/
@CalledByNative
public static void notifyDownloadProgress(Context context, String guid, String url, long startTime, String displayName) {
DownloadNotifier notifier = getDownloadNotifier(context);
if (notifier == null)
return;
DownloadInfo downloadInfo = new DownloadInfo.Builder().setIsOfflinePage(true).setDownloadGuid(guid).setFileName(displayName).setFilePath(url).setPercentCompleted(-1).setIsOffTheRecord(false).setIsResumable(true).setTimeRemainingInMillis(0).build();
notifier.notifyDownloadProgress(downloadInfo, startTime, false);
}
use of org.chromium.chrome.browser.download.DownloadInfo in project AndroidChromium by JackyAndroid.
the class OfflinePageNotificationBridge method notifyDownloadInterrupted.
/**
* Update download notification to interrupted.
* @param context Context to show notifications.
* @param guid GUID of a request to download a page related to the notification.
* @param displayName Name to be displayed on notification.
*/
@CalledByNative
public static void notifyDownloadInterrupted(Context context, String guid, String displayName) {
DownloadNotifier notifier = getDownloadNotifier(context);
if (notifier == null)
return;
DownloadInfo downloadInfo = new DownloadInfo.Builder().setIsOfflinePage(true).setDownloadGuid(guid).setFileName(displayName).setIsResumable(true).build();
notifier.notifyDownloadInterrupted(downloadInfo, true);
}
use of org.chromium.chrome.browser.download.DownloadInfo in project AndroidChromium by JackyAndroid.
the class OfflinePageNotificationBridge method notifyDownloadPaused.
/**
* Update download notification to paused.
* @param context Context to show notifications.
* @param guid GUID of a request to download a page related to the notification.
* @param displayName Name to be displayed on notification.
*/
@CalledByNative
public static void notifyDownloadPaused(Context context, String guid, String displayName) {
DownloadNotifier notifier = getDownloadNotifier(context);
if (notifier == null)
return;
DownloadInfo downloadInfo = new DownloadInfo.Builder().setIsOfflinePage(true).setDownloadGuid(guid).setFileName(displayName).build();
notifier.notifyDownloadPaused(downloadInfo);
}
use of org.chromium.chrome.browser.download.DownloadInfo in project AndroidChromium by JackyAndroid.
the class OfflinePageNotificationBridge method notifyDownloadFailed.
/**
* Update download notification to failure.
* @param context Context to show notifications.
* @param guid GUID of a request to download a page related to the notification.
* @param url URL of the page to download.
* @param displayName Name to be displayed on notification.
*/
@CalledByNative
public static void notifyDownloadFailed(Context context, String guid, String url, String displayName) {
DownloadNotifier notifier = getDownloadNotifier(context);
if (notifier == null)
return;
DownloadInfo downloadInfo = new DownloadInfo.Builder().setIsOfflinePage(true).setDownloadGuid(guid).setFileName(displayName).build();
notifier.notifyDownloadFailed(downloadInfo);
}
use of org.chromium.chrome.browser.download.DownloadInfo in project AndroidChromium by JackyAndroid.
the class OfflinePageNotificationBridge method notifyDownloadSuccessful.
/**
* Update download notification to success.
* @param context Context to show notifications.
* @param guid GUID of a request to download a page related to the notification.
* @param url URL of the page to download.
* @param displayName Name to be displayed on notification.
*/
@CalledByNative
public static void notifyDownloadSuccessful(Context context, String guid, String url, String displayName) {
DownloadNotifier notifier = getDownloadNotifier(context);
if (notifier == null)
return;
DownloadInfo downloadInfo = new DownloadInfo.Builder().setIsOfflinePage(true).setDownloadGuid(guid).setFileName(displayName).setIsResumable(false).setIsOffTheRecord(false).build();
notifier.notifyDownloadSuccessful(downloadInfo, -1, false, true);
}
Aggregations