Path: blob/main/src/vs/workbench/services/browserElements/browser/webBrowserElementsService.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { BrowserType, IElementData } from '../../../../platform/browserElements/common/browserElements.js';6import { IRectangle } from '../../../../platform/window/common/window.js';7import { CancellationToken } from '../../../../base/common/cancellation.js';8import { registerSingleton, InstantiationType } from '../../../../platform/instantiation/common/extensions.js';9import { IBrowserElementsService } from './browserElementsService.js';1011class WebBrowserElementsService implements IBrowserElementsService {12_serviceBrand: undefined;1314constructor() { }1516async getElementData(rect: IRectangle, token: CancellationToken): Promise<IElementData | undefined> {17throw new Error('Not implemented');18}1920startDebugSession(token: CancellationToken, browserType: BrowserType): Promise<void> {21throw new Error('Not implemented');22}23}2425registerSingleton(IBrowserElementsService, WebBrowserElementsService, InstantiationType.Delayed);262728