Commit a7523d1f authored by Roger Tawa's avatar Roger Tawa Committed by Commit Bot

Change minimum RLZ ping delay on chromeos to 60sec.

Bug: 820783
Change-Id: If60b92464261fbf6523153f9cab9bba5bbf61dcd
Reviewed-on: https://chromium-review.googlesource.com/1022513Reviewed-by: default avatarWenzhao (Colin) Zang <wzang@chromium.org>
Commit-Queue: Roger Tawa <rogerta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#552460}
parent bc382ac7
...@@ -33,11 +33,12 @@ namespace { ...@@ -33,11 +33,12 @@ namespace {
// Maximum and minimum delay for financial ping we would allow to be set through // Maximum and minimum delay for financial ping we would allow to be set through
// master preferences. Somewhat arbitrary, may need to be adjusted in future. // master preferences. Somewhat arbitrary, may need to be adjusted in future.
#if defined(OS_CHROMEOS) #if defined(OS_CHROMEOS)
const base::TimeDelta kMinInitDelay = base::TimeDelta::FromSeconds(60);
const base::TimeDelta kMaxInitDelay = base::TimeDelta::FromHours(24); const base::TimeDelta kMaxInitDelay = base::TimeDelta::FromHours(24);
#else #else
const base::TimeDelta kMinInitDelay = base::TimeDelta::FromSeconds(20);
const base::TimeDelta kMaxInitDelay = base::TimeDelta::FromSeconds(200); const base::TimeDelta kMaxInitDelay = base::TimeDelta::FromSeconds(200);
#endif #endif
const base::TimeDelta kMinInitDelay = base::TimeDelta::FromSeconds(20);
void RecordProductEvents(bool first_run, void RecordProductEvents(bool first_run,
bool is_google_default_search, bool is_google_default_search,
......
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