Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7272)

Unified Diff: chrome/browser/ui/webui/sync_promo_trial.h

Issue 8992034: Merge 114608, 115692 to 963 (M17) branch. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/963/src/
Patch Set: rebasing, checking for diffs before merge Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/sync_promo_handler.cc ('k') | chrome/browser/ui/webui/sync_promo_trial.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/sync_promo_trial.h
diff --git a/chrome/browser/ui/webui/sync_promo_trial.h b/chrome/browser/ui/webui/sync_promo_trial.h
deleted file mode 100644
index 5186bb53e75c193a4570ef2decf67731f8ea18c7..0000000000000000000000000000000000000000
--- a/chrome/browser/ui/webui/sync_promo_trial.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_TRIAL_H_
-#define CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_TRIAL_H_
-
-#include "base/basictypes.h"
-
-// These helpers manage the Sync Promo field trial.
-//
-// The sync promo experiment involves changing the message body in the sign in
-// promo (see SyncPromoHandler) to see if that has any effect on sign in.
-namespace sync_promo_trial {
- enum Group {
- // "Get your bookmarks, history, and settings on all your devices."
- // This is also the default message group.
- PROMO_MSG_A = 0,
-
- // "Back up your bookmarks, history, and settings to the web."
- PROMO_MSG_B,
-
- // "Sync your personalized browser features between all your devices."
- PROMO_MSG_C,
-
- // "You'll be automatically signed into to your favorite Google services."
- PROMO_MSG_D,
-
- // Bounding max value needed for UMA histogram macro.
- PROMO_MSG_MAX,
- };
-
- // Activate the field trial. Before this call, all calls to GetGroup will
- // return PROMO_MSG_A. *** MUST NOT BE CALLED MORE THAN ONCE. ***
- void Activate();
-
- // Returns true iff the experiment has been set up and is active. If this
- // is false, the caller should not record stats for this experiment.
- bool IsExperimentActive();
-
- // Return the field trial group this client belongs to.
- Group GetGroup();
-
- // Return the resource ID for the Sync Promo message body associated with this
- // client.
- int GetMessageBodyResID();
-
- // Record the appropriate UMA stat for when a user sees the sync promo
- // message.
- void RecordUserSawMessage();
-
- // Record the appropriate UMA stat for when a user successfully signs in to
- // GAIA.
- void RecordUserSignedIn();
-}
-
-#endif // CHROME_BROWSER_UI_WEBUI_SYNC_PROMO_TRIAL_H_
« no previous file with comments | « chrome/browser/ui/webui/sync_promo_handler.cc ('k') | chrome/browser/ui/webui/sync_promo_trial.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698