mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
Consistent naming for ext host <-> main process communication
This commit is contained in:
@@ -17,10 +17,10 @@ export class ExtHostStorage {
|
||||
}
|
||||
|
||||
getValue<T>(shared: boolean, key: string, defaultValue?: T): TPromise<T> {
|
||||
return this._proxy.getValue(shared, key).then(value => value || defaultValue);
|
||||
return this._proxy.$getValue(shared, key).then(value => value || defaultValue);
|
||||
}
|
||||
|
||||
setValue(shared: boolean, key: string, value: any): TPromise<void> {
|
||||
return this._proxy.setValue(shared, key, value);
|
||||
return this._proxy.$setValue(shared, key, value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user