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

Unified Diff: chrome/common/extensions/extension_constants.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 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/common/extensions/extension_constants.h
diff --git a/chrome/common/extensions/extension_constants.h b/chrome/common/extensions/extension_constants.h
index 332f386d5eb8901c21932c156a0fc9a49baca836..3e474f7082ec58a8ecae4dc7ce95adc3932e0d2a 100644
--- a/chrome/common/extensions/extension_constants.h
+++ b/chrome/common/extensions/extension_constants.h
@@ -224,6 +224,9 @@ namespace extension_misc {
// The extension id of the Web Store component application.
extern const char* kWebStoreAppId;
+ // Web Store app id used in the new tab page.
Erik does not do reviews 2010/11/10 23:29:51 I don't get it. How can we have two different app
+ extern const char* kNTPWebStoreAppId;
+
// Note: this structure is an ASN.1 which encodes the algorithm used
// with its parameters. This is defined in PKCS #1 v2.1 (RFC 3447).
// It is encoding: { OID sha1WithRSAEncryption PARAMETERS NULL }
@@ -239,6 +242,15 @@ namespace extension_misc {
LAUNCH_PANEL,
LAUNCH_TAB
};
+
+ // These are the buckets used in the apps promo histogram.
+ enum AppsPromoBuckets {
+ LAUNCH_APP,
+ LAUNCH_WEB_STORE,
+ CLOSE_PROMO,
+ EXPIRE_PROMO,
+ MAX = EXPIRE_PROMO
Erik does not do reviews 2010/11/10 23:29:51 this is wrong. From histogram.h: "the samples sho
+ };
} // extension_misc
#endif // CHROME_COMMON_EXTENSIONS_EXTENSION_CONSTANTS_H_

Powered by Google App Engine
This is Rietveld 408576698