Commit ac73b5bb authored by rdevlin.cronin's avatar rdevlin.cronin Committed by Commit bot

[Extensions] Fix InstalledLoader histograms to ignore component extenisons

Properly ignore component extensions in InstalledLoader.

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

Cr-Commit-Position: refs/heads/master@{#327317}
parent 02b1b8c1
......@@ -389,7 +389,7 @@ void InstalledLoader::RecordExtensionsMetrics() {
// From now on, don't count component extensions, since they are only
// extensions as an implementation detail. Continue to count unpacked
// extensions for a few metrics.
if (location == Manifest::COMPONENT)
if (Manifest::IsComponentLocation(location))
continue;
// Histogram for non-webstore extensions overriding new tab page should
......
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