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

Unified Diff: chrome/browser/dom_ui/new_tab_ui.h

Issue 4708002: Add a histogram for tracking web store promo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: incorporate feedback, use ping attribute Created 10 years, 1 month 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
Index: chrome/browser/dom_ui/new_tab_ui.h
diff --git a/chrome/browser/dom_ui/new_tab_ui.h b/chrome/browser/dom_ui/new_tab_ui.h
index 35e2a87b1cb3c8b75dda3b8af6a8384afb5df074..58474e4474f37d660defce6e7d7c8044959bdb15 100644
--- a/chrome/browser/dom_ui/new_tab_ui.h
+++ b/chrome/browser/dom_ui/new_tab_ui.h
@@ -70,6 +70,18 @@ class NewTabUI : public DOMUI,
private:
virtual ~NewTabHTMLSource() {}
+ // Records a web store launch in the appropriate histograms. |promo_active|
+ // specifies if the web store promotion was active.
+ void RecordWebStoreLaunch(bool promo_active);
+
+ // Records an app launch in the appropriate histograms. |promo_active|
+ // specifies if the web store promotion was active.
+ void RecordAppLaunch(bool promo_active);
+
+ // Returns true if |path| indicates that the promotion is active, false if
+ // the promo is not active.
+ bool IsPromoActive(const std::string& path);
+
// Whether this is the first run.
static bool first_run_;

Powered by Google App Engine
This is Rietveld 408576698