fix: resolve conflict in extensionHostProcessSetup.ts

From what I can tell, they added these `performance.mark` calls. Not sure
exactly what they do, but my guess is they're supposed to help with measuring
extension performance?
This commit is contained in:
Joe Previte 2021-02-25 11:42:42 -07:00
parent 7bf1fd979e
commit 262963c9ec
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24
1 changed files with 0 additions and 3 deletions

View File

@ -313,12 +313,9 @@ function connectToRenderer(protocol: IMessagePassingProtocol): Promise<IRenderer
}
export async function startExtensionHostProcess(): Promise<void> {
<<<<<<< HEAD
proxyAgent.monkeyPatch(true);
=======
performance.mark(`code/extHost/willConnectToRenderer`);
>>>>>>> 89b6e0164fa770333755b11504e19a4232b1a2d4
const protocol = await createExtHostProtocol();
performance.mark(`code/extHost/didConnectToRenderer`);
const renderer = await connectToRenderer(protocol);