Commit a9191e06 authored by Henrique Nakashima's avatar Henrique Nakashima Committed by Commit Bot

Increase limitless prefetch start delay to 20s, up from 5s.

Testing Offline Prefetch in reduced mode manually requires a bit more
time.

Bug: 933358
Change-Id: Iea9e52fda62bbf7fc2251fe3ca8eef2d110f4889
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1626495
Commit-Queue: Carlos Knippschild <carlosk@chromium.org>
Auto-Submit: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: default avatarCarlos Knippschild <carlosk@chromium.org>
Cr-Commit-Position: refs/heads/master@{#666471}
parent fb8ad249
...@@ -20,7 +20,7 @@ import org.chromium.components.background_task_scheduler.TaskInfo; ...@@ -20,7 +20,7 @@ import org.chromium.components.background_task_scheduler.TaskInfo;
@JNINamespace("offline_pages::prefetch") @JNINamespace("offline_pages::prefetch")
public class PrefetchBackgroundTaskScheduler { public class PrefetchBackgroundTaskScheduler {
public static final long DEFAULT_START_DELAY_SECONDS = 15 * 60; public static final long DEFAULT_START_DELAY_SECONDS = 15 * 60;
public static final long LIMITLESS_START_DELAY_SECONDS = 5; public static final long LIMITLESS_START_DELAY_SECONDS = 20;
/** /**
* Schedules the default 'NWake' task for the prefetching service. This task will normally be * Schedules the default 'NWake' task for the prefetching service. This task will normally be
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment