This repository was archived by the owner on Sep 30, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +0
-29
lines changed
Expand file tree Collapse file tree 4 files changed +0
-29
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ import { getHeaders } from '../../shared/backend/headers'
2929import { fetchSite } from '../../shared/backend/server'
3030import { initializeOmniboxInterface } from '../../shared/cli'
3131import { browserPortToMessagePort , findMessagePorts } from '../../shared/platform/ports'
32- import { createBlobURLForBundle } from '../../shared/platform/worker'
3332import { initSentry } from '../../shared/sentry'
3433import { ConditionalTelemetryRecorderProvider } from '../../shared/telemetry'
3534import { EventLogger } from '../../shared/tracking/eventLogger'
@@ -227,10 +226,6 @@ async function main(): Promise<void> {
227226 await browser . runtime . openOptionsPage ( )
228227 } ,
229228
230- async createBlobURL ( bundleUrl : string ) : Promise < string > {
231- return createBlobURLForBundle ( bundleUrl )
232- } ,
233-
234229 async requestGraphQL < T , V = object > ( {
235230 request,
236231 variables,
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ const messageSender =
1818 * Functions that can be invoked from content scripts that will be executed in the background page.
1919 */
2020export const background : BackgroundPageApi = {
21- createBlobURL : messageSender ( 'createBlobURL' ) ,
2221 openOptionsPage : messageSender ( 'openOptionsPage' ) ,
2322 requestGraphQL : messageSender ( 'requestGraphQL' ) ,
2423 notifyRepoSyncError : messageSender ( 'notifyRepoSyncError' ) ,
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ export interface ManagedStorageItems extends SourcegraphURL {
6868 */
6969export interface BackgroundPageApi {
7070 openOptionsPage ( ) : Promise < void >
71- createBlobURL ( bundleUrl : string ) : Promise < string >
7271 requestGraphQL < T , V = object > ( options : {
7372 request : string
7473 variables : V
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments