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

Unified Diff: chrome/renderer/plugins/plugin_uma.h

Issue 13601002: Report UMA for Shockwave Flash and Widevine CDM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase and updated unittest. Created 7 years, 8 months 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/renderer/DEPS ('k') | chrome/renderer/plugins/plugin_uma.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/plugins/plugin_uma.h
diff --git a/chrome/renderer/plugins/plugin_uma.h b/chrome/renderer/plugins/plugin_uma.h
index bafb1d847eae1118b39be7f95c9cf130d92ac65d..d0b312ab8921901389ee8d457187bba3e6533885 100644
--- a/chrome/renderer/plugins/plugin_uma.h
+++ b/chrome/renderer/plugins/plugin_uma.h
@@ -22,14 +22,23 @@ class PluginUMAReporter {
DISABLED_PLUGIN
};
- // This must be sync'd with histogram values.
+ // Make sure the enum list in tools/histogram/histograms.xml is updated with
+ // any change in this list.
enum PluginType {
WINDOWS_MEDIA_PLAYER = 0,
SILVERLIGHT = 1,
REALPLAYER = 2,
JAVA = 3,
QUICKTIME = 4,
- OTHER = 5
+ OTHER = 5, // This is obsolete and replaced by UNSUPPORTED_* types.
+ UNSUPPORTED_MIMETYPE,
+ UNSUPPORTED_EXTENSION,
+ // NOTE: Add new unsupported types only immediately above this line.
+ BROWSER_PLUGIN = 10,
+ SHOCKWAVE_FLASH,
+ WIDEVINE_CDM,
+ // NOTE: Add new plugin types only immediately above this line.
+ PLUGIN_TYPE_MAX
};
// Sends UMA data, i.e. plugin's type.
« no previous file with comments | « chrome/renderer/DEPS ('k') | chrome/renderer/plugins/plugin_uma.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698