commit | 872275966d385ee8c26748c84f222e078f915f9c | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Nov 16 08:41:05 2012 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Fri Nov 16 08:41:05 2012 |
tree | 7eeaff6a3ca55ba3e131c9d7090ee12341f0a26b | |
parent | 2b259f00deb9a2db8af480d5ce773a5d114756ef [diff] [blame] |
This patch changes participation condition of bookmark prompt experiment to: - 1% of new users on Canary channel - One month rather than using variations service. Checking new user, aka new installation, is as same as https://chromiumcodereview.appspot.com/11363062 We'll change the start date for stable channel once it is fixed. BUG=160151 Review URL: https://chromiumcodereview.appspot.com/11412002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@168170 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/chrome/browser/browser_process_impl.cc b/chrome/browser/browser_process_impl.cc index fb4ec417..0b5f4bb71 100644 --- a/chrome/browser/browser_process_impl.cc +++ b/chrome/browser/browser_process_impl.cc
@@ -803,7 +803,8 @@ #endif #if !defined(OS_ANDROID) - if (browser_defaults::bookmarks_enabled) + if (browser_defaults::bookmarks_enabled && + BookmarkPromptController::IsEnabled()) bookmark_prompt_controller_.reset(new BookmarkPromptController()); #endif }