| // Copyright 2019 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| import {sendWithPromise} from 'chrome://resources/js/cr.js'; |
| |
| import {IncognitoAvailability} from './constants.js'; |
| |
| export interface BrowserProxy { |
| getIncognitoAvailability(): Promise<IncognitoAvailability>; |
| getCanEditBookmarks(): Promise<boolean>; |
| recordInHistogram(histogram: string, bucket: number, maxBucket: number): void; |
| } |
| |
| export class BrowserProxyImpl implements BrowserProxy { |
| getIncognitoAvailability() { |
| return sendWithPromise('getIncognitoAvailability'); |
| } |
| |
| getCanEditBookmarks() { |
| return sendWithPromise('getCanEditBookmarks'); |
| } |
| |
| recordInHistogram(histogram: string, bucket: number, maxBucket: number) { |
| chrome.send( |
| 'metricsHandler:recordInHistogram', [histogram, bucket, maxBucket]); |
| } |
| |
| static getInstance(): BrowserProxy { |
| return instance || (instance = new BrowserProxyImpl()); |
| } |
| |
| static setInstance(obj: BrowserProxy) { |
| instance = obj; |
| } |
| } |
| |
| let instance: BrowserProxy|null = null; |