1// Copyright 2020 the V8 project authors. All rights reserved. 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4import {DOM, FileReader} from './helper.mjs'; 5 6DOM.defineCustomElement( 7 '../js/log-file-reader', 8 (templateText) => class LogFileReader extends FileReader { 9 constructor() { 10 super(templateText); 11 } 12 }); 13