diff options
author | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 02:08:54 +0000 |
---|---|---|
committer | yosin@chromium.org <yosin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-25 02:08:54 +0000 |
commit | aa84b4e722f3140f49dfc859059fc24b121b493a (patch) | |
tree | 2d0261adba314be4a0d1089ce7f5cd0d659bc381 /chrome/browser/ui/bookmarks | |
parent | af9586ebb588d67d345bc49ae6d3239e804bbe66 (diff) | |
download | chromium_src-aa84b4e722f3140f49dfc859059fc24b121b493a.zip chromium_src-aa84b4e722f3140f49dfc859059fc24b121b493a.tar.gz chromium_src-aa84b4e722f3140f49dfc859059fc24b121b493a.tar.bz2 |
Enable bookmark prompt experiment for M26 Stable
This patch chagnes experiment period for M26 stable to April 5 to May 5, 2013.
Related patch:
https://codereview.chromium.org/12263055
For M25 Stable
BUG=223029
Review URL: https://codereview.chromium.org/13008012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@190323 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/bookmarks')
-rw-r--r-- | chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc b/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc index 6098ca5..b6985b6 100644 --- a/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc +++ b/chrome/browser/ui/bookmarks/bookmark_prompt_controller.cc @@ -90,10 +90,10 @@ const ExperimentDateRange* GetExperimentDateRange() { return &kCanaryRange; } case chrome::VersionInfo::CHANNEL_STABLE: { - // Experiment date range for M25 Stable. + // Experiment date range for M26 Stable. static const ExperimentDateRange kStableRange = { - { 2013, 2, 0, 25, 0, 0, 0, 0 }, // Feb 25, 2013 - { 2013, 3, 0, 28, 0, 0, 0, 0 }, // Mar 28, 2013 + { 2013, 4, 0, 5, 0, 0, 0, 0 }, // Apr 5, 2013 + { 2013, 5, 0, 5, 0, 0, 0, 0 }, // May 5, 2013 }; return &kStableRange; } |