diff options
author | mal@google.com <mal@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-02 21:06:19 +0000 |
---|---|---|
committer | mal@google.com <mal@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-04-02 21:06:19 +0000 |
commit | c7bd42e6205894442d758aaa075ef97b56fe39a0 (patch) | |
tree | b5921e339d21b1b9721b077dcee28a49e9e3d8a9 /chrome/installer | |
parent | cca8f4ae3d30e5fac962ee26538a6b2a06a2698c (diff) | |
download | chromium_src-c7bd42e6205894442d758aaa075ef97b56fe39a0.zip chromium_src-c7bd42e6205894442d758aaa075ef97b56fe39a0.tar.gz chromium_src-c7bd42e6205894442d758aaa075ef97b56fe39a0.tar.bz2 |
Change the inactive window for notification from 3000 to 30 days.
BUG= 39906
R= cpu
TEST= see manual test plan
Review URL: http://codereview.chromium.org/1575014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43525 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/google_chrome_distribution.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/util/google_chrome_distribution.cc b/chrome/installer/util/google_chrome_distribution.cc index c977f5b..c762048 100644 --- a/chrome/installer/util/google_chrome_distribution.cc +++ b/chrome/installer/util/google_chrome_distribution.cc @@ -514,7 +514,7 @@ void GoogleChromeDistribution::LaunchUserExperiment( // chrome user data directory. std::wstring user_data_dir = installer::GetChromeUserDataPath(); // TODO(cpu): re-enable experiment. - const int kThirtyDays = 3000 * 24; + const int kThirtyDays = 30 * 24; int dir_age_hours = GetDirectoryWriteAgeInHours(user_data_dir.c_str()); if (dir_age_hours < 0) { // This means that we failed to find the user data dir. The most likey |