Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts b/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts
index 6cf90434c7b..b85bfe7485f 100644
--- a/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts
+++ b/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts
@@ -60,8 +60,9 @@ interface InstalledExtensionsEvent {
}
interface ExtensionsLoadClassification extends GDPRClassification<InstalledExtensionsEvent> {
owner: 'digitarald';
- readonly extensionIds: { classification: 'PublicNonPersonalData'; purpose: 'FeatureInsight' };
- readonly count: { classification: 'PublicNonPersonalData'; purpose: 'FeatureInsight' };
+ comment: 'Helps to understand which extensions are the most actively used.',
+ readonly extensionIds: { classification: 'PublicNonPersonalData'; purpose: 'FeatureInsight'; comment: 'The list of extension ids that are installed.' };
+ readonly count: { classification: 'PublicNonPersonalData'; purpose: 'FeatureInsight'; comment: 'The number of extensions that are installed.' };
}
export class Extension implements IExtension {