summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorchrisha@chromium.org <chrisha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 19:23:20 +0000
committerchrisha@chromium.org <chrisha@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-12 19:23:20 +0000
commita21d8087f7ca0a8ccf2d07344b7dcfa34d455886 (patch)
tree926c6306a96e1d6b73d9d2b73231a7f9e7ff3e36
parent2f7b9d5906d6d52ec0996286fc91e17302ec64bb (diff)
downloadchromium_src-a21d8087f7ca0a8ccf2d07344b7dcfa34d455886.zip
chromium_src-a21d8087f7ca0a8ccf2d07344b7dcfa34d455886.tar.gz
chromium_src-a21d8087f7ca0a8ccf2d07344b7dcfa34d455886.tar.bz2
Extend the PreRead experiment expiry date.
The PreRead experiment expired as of Jan 1, 2012. This CL extends it for another 6 months until July 1, 2012. BUG= TEST= Review URL: http://codereview.chromium.org/9107041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117473 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/app/client_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/app/client_util.cc b/chrome/app/client_util.cc
index e753725..14c841f 100644
--- a/chrome/app/client_util.cc
+++ b/chrome/app/client_util.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -91,7 +91,7 @@ bool EnvQueryStr(const wchar_t* key_name, std::wstring* value) {
// These constants are used by the PreRead experiment.
const wchar_t kPreReadRegistryValue[] = L"PreReadExperimentGroup";
const int kPreReadExpiryYear = 2012;
-const int kPreReadExpiryMonth = 1;
+const int kPreReadExpiryMonth = 7;
const int kPreReadExpiryDay = 1;
bool PreReadShouldRun() {