diff options
author | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-20 02:26:37 +0000 |
---|---|---|
committer | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-20 02:26:37 +0000 |
commit | 3b6b5bffec86bcdc8fe77c0d5d123f4ee3ad130f (patch) | |
tree | 72b59f74d1bfa76811455acf19d2c88f10765ce9 /chrome/browser/ui/bookmarks | |
parent | 3a11d3db269a590fa15dc1f5ff8c89fa09c3038b (diff) | |
download | chromium_src-3b6b5bffec86bcdc8fe77c0d5d123f4ee3ad130f.zip chromium_src-3b6b5bffec86bcdc8fe77c0d5d123f4ee3ad130f.tar.gz chromium_src-3b6b5bffec86bcdc8fe77c0d5d123f4ee3ad130f.tar.bz2 |
This patch changes participation condition of bookmark prompt experiment to:
- 1% of new users on Beta/Dev channel, users who create profile after Feb 25(M25) or Mar 1(M26).
- Until Mar 28(M25) or Apr 1(M26)
rather than using variations service.
Checking new user, aka new installation, is as same as
https://chromiumcodereview.appspot.com/11363062
BUG=176428
Review URL: https://codereview.chromium.org/12263055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183378 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/bookmarks')
-rw-r--r-- | chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc b/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc index c58e501..96df728 100644 --- a/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc +++ b/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc @@ -74,10 +74,10 @@ const ExperimentDateRange* GetExperimentDateRange() { switch (chrome::VersionInfo::GetChannel()) { case chrome::VersionInfo::CHANNEL_BETA: case chrome::VersionInfo::CHANNEL_DEV: { - // Experiment date range for M25 Beta/Dev + // Experiment date range for M26 Beta/Dev static const ExperimentDateRange kBetaAndDevRange = { - { 2013, 1, 0, 17, 0, 0, 0, 0 }, // Jan 17, 2013 - { 2013, 2, 0, 18, 0, 0, 0, 0 }, // Feb 17, 2013 + { 2013, 3, 0, 1, 0, 0, 0, 0 }, // Mar 1, 2013 + { 2013, 4, 0, 1, 0, 0, 0, 0 }, // Apr 1, 2013 }; return &kBetaAndDevRange; } @@ -90,10 +90,10 @@ const ExperimentDateRange* GetExperimentDateRange() { return &kCanaryRange; } case chrome::VersionInfo::CHANNEL_STABLE: { - // TODO(yosin) We'll update stable date range once release date is fixed. + // Experiment date range for M25 Stable. static const ExperimentDateRange kStableRange = { - { 2013, 1, 0, 17, 0, 0, 0, 0 }, // Jan 17, 2013 - { 2013, 2, 0, 18, 0, 0, 0, 0 }, // Feb 17, 2013 + { 2013, 2, 0, 25, 0, 0, 0, 0 }, // Feb 25, 2013 + { 2013, 3, 0, 28, 0, 0, 0, 0 }, // Mar 28, 2013 }; return &kStableRange; } |