Run experiment with default viewlet shown/hidden (fixes #12414)

This commit is contained in:
Christof Marti
2016-09-21 16:04:57 -07:00
parent f279a631b5
commit 12d000ec54
6 changed files with 56 additions and 8 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} from 'vs/platform/telemetry/common/telemetry';
import {ITelemetryService, ITelemetryInfo, ITelemetryExperiments} from 'vs/platform/telemetry/common/telemetry';
import {IThreadService} from 'vs/workbench/services/thread/common/threadService';
import {MainContext, MainThreadTelemetryShape} from './extHost.protocol';
@@ -26,6 +26,10 @@ export class RemoteTelemetryService implements ITelemetryService {
throw notImplemented();
}
getExperiments(): ITelemetryExperiments {
throw notImplemented();
}
getTelemetryInfo(): TPromise<ITelemetryInfo> {
return this._proxy.$getTelemetryInfo();
}