diff options
author | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-30 02:36:55 +0000 |
---|---|---|
committer | cpu@google.com <cpu@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-30 02:36:55 +0000 |
commit | 1fdb7a82e03355bb9402a706a4e5e3c3ae9227e6 (patch) | |
tree | dc3c1832158b9b5189309fa6ffa41ed1ac6b6cec | |
parent | eabd506f273e5680225f0b0cabf6b2a162126cd4 (diff) | |
download | chromium_src-1fdb7a82e03355bb9402a706a4e5e3c3ae9227e6.zip chromium_src-1fdb7a82e03355bb9402a706a4e5e3c3ae9227e6.tar.gz chromium_src-1fdb7a82e03355bb9402a706a4e5e3c3ae9227e6.tar.bz2 |
Move RLZ back to 90 seconds delayed init
BUG=1609821
Review URL: http://codereview.chromium.org/19694
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8948 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/rlz/rlz.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/rlz/rlz.cc b/chrome/browser/rlz/rlz.cc index 5cd0a15..8313218 100644 --- a/chrome/browser/rlz/rlz.cc +++ b/chrome/browser/rlz/rlz.cc @@ -292,9 +292,9 @@ bool RLZTracker::InitRlzDelayed(int directory_key, bool first_run) { if (!OmniBoxUsageObserver::used()) 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; } |