Include likely ad injection for metrics gathering in ActiveScriptController

Review URL: https://codereview.chromium.org/299493002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@271515 0039d316-1c4b-4281-b951-d872f2087c98
parent c0800ed6
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment