mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-18 15:55:59 +01:00
handle: string to nativeHandle: UInt8Array based on feedback (#234378)
Feedback in https://github.com/microsoft/vscode/issues/229431
This commit is contained in:
committed by
GitHub
parent
7662e03145
commit
d7ab35a98e
@@ -437,9 +437,9 @@ export function createApiFactoryAndRegisterActors(accessor: ServicesAccessor): I
|
||||
checkProposedApiEnabled(extension, 'resolvers');
|
||||
return initData.commit;
|
||||
},
|
||||
get handle(): string | undefined {
|
||||
get nativeHandle(): Uint8Array | undefined {
|
||||
checkProposedApiEnabled(extension, 'nativeWindowHandle');
|
||||
return initData.handle;
|
||||
return extHostWindow.nativeHandle;
|
||||
}
|
||||
};
|
||||
if (!initData.environment.extensionTestsLocationURI) {
|
||||
|
||||
Reference in New Issue
Block a user