mirror of https://git.tuxpa.in/a/code-server.git
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:
parent
7bf1fd979e
commit
262963c9ec
|
@ -313,12 +313,9 @@ function connectToRenderer(protocol: IMessagePassingProtocol): Promise<IRenderer
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function startExtensionHostProcess(): Promise<void> {
|
export async function startExtensionHostProcess(): Promise<void> {
|
||||||
<<<<<<< HEAD
|
|
||||||
proxyAgent.monkeyPatch(true);
|
proxyAgent.monkeyPatch(true);
|
||||||
|
|
||||||
=======
|
|
||||||
performance.mark(`code/extHost/willConnectToRenderer`);
|
performance.mark(`code/extHost/willConnectToRenderer`);
|
||||||
>>>>>>> 89b6e0164fa770333755b11504e19a4232b1a2d4
|
|
||||||
const protocol = await createExtHostProtocol();
|
const protocol = await createExtHostProtocol();
|
||||||
performance.mark(`code/extHost/didConnectToRenderer`);
|
performance.mark(`code/extHost/didConnectToRenderer`);
|
||||||
const renderer = await connectToRenderer(protocol);
|
const renderer = await connectToRenderer(protocol);
|
||||||
|
|
Loading…
Reference in New Issue