Consistent naming for ext host <-> main process communication

This commit is contained in:
Alex Dima
2016-07-12 21:14:43 +03:00
parent bdaa72b842
commit 217e0b56a8
16 changed files with 109 additions and 109 deletions

View File

@@ -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);
}
}