blob: 92b36c31e464631d5fba3e39c234ab123fd1656a [file] [log] [blame]
// Copyright 2020 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import {addSingletonGetter} from 'chrome://resources/js/cr.m.js';
/** @interface */
class LocalStorageProxy {
/**
* @param {string} key
* @return {?string}
*/
getItem(key) {}
/**
* @param {string} key
* @param {string} value
*/
setItem(key, value) {}
}
/** @implements {LocalStorageProxy} */
export class LocalStorageProxyImpl {
/** @override */
getItem(key) {
return window.localStorage.getItem(key);
}
/** @override */
setItem(key, value) {
window.localStorage.setItem(key, value);
}
}
addSingletonGetter(LocalStorageProxyImpl);