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:
authorHarald Kirschner <harald@digitarald.com>2022-07-24 15:41:15 +0300
committerGitHub <noreply@github.com>2022-07-24 15:41:15 +0300
commit130a0b774ab71115fb9c94cbfcbb9a80d5074ea7 (patch)
tree3f8fc0cff86990c0193d610c42019086c7fa8cb3 /src/vs/workbench/contrib/extensions
parent6ab408190e6a76bf460b4cee205a830b66d0e7c7 (diff)
Adding digitarald owner comment (#155502)
* Adding my owner comment. * Adding property comments Co-authored-by: Logan Ramos <lramos15@gmail.com>
Diffstat (limited to 'src/vs/workbench/contrib/extensions')
-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 {