Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2250)

Unified Diff: chrome/browser/rlz/rlz.cc

Issue 20022: Merge r8948 - Move RLZ back to 90 seconds delayed init... (Closed) Base URL: svn://chrome-svn/chrome/branches/release_154.next/src/
Patch Set: Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/rlz/rlz.cc
===================================================================
--- chrome/browser/rlz/rlz.cc (revision 9042)
+++ chrome/browser/rlz/rlz.cc (working copy)
@@ -273,9 +273,9 @@
bool RLZTracker::InitRlzDelayed(int directory_key, bool first_run) {
new OmniBoxUsageObserver();
// Schedule the delayed init items.
- const int kTwentySeconds = 20 * 1000;
+ const int kNinetySeconds = 90 * 1000;
MessageLoop::current()->PostDelayedTask(FROM_HERE,
- new DelayedInitTask(directory_key, first_run), kTwentySeconds);
+ new DelayedInitTask(directory_key, first_run), kNinetySeconds);
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698