scm: hide input box model from extension host

This commit is contained in:
Joao Moreno
2017-02-03 17:20:26 +01:00
parent d7382f0d55
commit 3eddf71678
11 changed files with 107 additions and 50 deletions

View File

@@ -259,6 +259,7 @@ export abstract class MainThreadSCMShape {
$register(id: string, features: SCMProviderFeatures): void { throw ni(); }
$unregister(id: string): void { throw ni(); }
$onChange(id: string, resources: SCMRawResourceGroup[], count: number | undefined): void { throw ni(); }
$setInputBoxValue(value: string): void { throw ni(); }
}
// -- extension host
@@ -394,6 +395,7 @@ export abstract class ExtHostSCMShape {
$open(id: string, resourceGroupId: string, uri: string): TPromise<void> { throw ni(); }
$drag(id: string, fromResourceGroupId: string, fromUri: string, toResourceGroupId: string): TPromise<void> { throw ni(); }
$getOriginalResource(id: string, uri: URI): TPromise<URI> { throw ni(); }
$onInputBoxValueChange(value: string): TPromise<void> { throw ni(); }
}
// --- proxy identifiers