mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-15 04:41:00 +01:00
16 lines
718 B
TypeScript
16 lines
718 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
'use strict';
|
|
|
|
import {AbstractRemoteTelemetryService} from 'vs/platform/telemetry/common/abstractRemoteTelemetryService';
|
|
|
|
export class ExtHostTelemetryService extends AbstractRemoteTelemetryService {
|
|
|
|
protected handleEvent(eventName: string, data?: any): void {
|
|
data = data || {};
|
|
data['pluginHostTelemetry'] = true;
|
|
super.handleEvent(eventName, data);
|
|
}
|
|
} |