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

Unified Diff: chrome/browser/extensions/activity_log/uma_policy.cc

Issue 299493002: Include likely ad injection for metrics gathering in ActiveScriptController (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/activity_log/uma_policy.cc
diff --git a/chrome/browser/extensions/activity_log/uma_policy.cc b/chrome/browser/extensions/activity_log/uma_policy.cc
index c9a5ac7d6987a89eab5414b793a9bce1cfa3e33a..540ff7ddad95b9899f05109aa315e01fa0360704 100644
--- a/chrome/browser/extensions/activity_log/uma_policy.cc
+++ b/chrome/browser/extensions/activity_log/uma_policy.cc
@@ -45,7 +45,11 @@ const int kAdLikelyInjected = 1 << UmaPolicy::AD_LIKELY_INJECTED;
const int kAdLikelyReplaced = 1 << UmaPolicy::AD_LIKELY_REPLACED;
// A mask of all the ad injection flags.
-const int kAnyAdActivity = kAdInjected | kAdRemoved | kAdReplaced;
+const int kAnyAdActivity = kAdInjected |
+ kAdRemoved |
+ kAdReplaced |
+ kAdLikelyInjected |
+ kAdLikelyReplaced;
} // namespace
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698