Separate exeriments from telemetry (fixes #29339)

This commit is contained in:
Christof Marti
2017-07-03 11:45:05 -07:00
parent ac78ebd870
commit 3dcc354df7
11 changed files with 85 additions and 143 deletions

View File

@@ -6,7 +6,7 @@
import { notImplemented } from 'vs/base/common/errors';
import { TPromise } from 'vs/base/common/winjs.base';
import { ITelemetryService, ITelemetryInfo, ITelemetryExperiments } from 'vs/platform/telemetry/common/telemetry';
import { ITelemetryService, ITelemetryInfo } from 'vs/platform/telemetry/common/telemetry';
import { IThreadService } from 'vs/workbench/services/thread/common/threadService';
import { MainContext, MainThreadTelemetryShape } from './extHost.protocol';
@@ -26,10 +26,6 @@ export class RemoteTelemetryService implements ITelemetryService {
throw notImplemented();
}
getExperiments(): ITelemetryExperiments {
throw notImplemented();
}
getTelemetryInfo(): TPromise<ITelemetryInfo> {
return this._proxy.$getTelemetryInfo();
}