Rename resolveExternalUri to asExternalUri

#81131
This commit is contained in:
Matt Bierner
2019-09-30 11:02:24 -07:00
parent 3ae6f0bf93
commit 8079ff0001
5 changed files with 7 additions and 7 deletions

View File

@@ -47,7 +47,7 @@ export class MainThreadWindow implements MainThreadWindowShape {
return this.openerService.open(uri, { openExternal: true, allowTunneling: options.allowTunneling });
}
async $resolveExternalUri(uriComponents: UriComponents, options: IOpenUriOptions): Promise<UriComponents> {
async $asExternalUri(uriComponents: UriComponents, options: IOpenUriOptions): Promise<UriComponents> {
const uri = URI.revive(uriComponents);
const result = await this.openerService.resolveExternalUri(uri, options);
return result.resolved;