257b0a43ac
Design doc: https://docs.google.com/document/d/1rxM3sDd-ZiOLznqw7MvYraulAPWJSVqC_CztO4YpUTQ/edit Change-Id: I471ff31f32b7bdd22cb03005c1dcc18aa485ad77 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3313793 Auto-Submit: Jianxiao Lu <jianxiao.lu@intel.com> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Shiyu Zhang <shiyu.zhang@intel.com> Cr-Commit-Position: refs/heads/main@{#78428}
13 lines
401 B
JavaScript
13 lines
401 B
JavaScript
// Copyright 2020 the V8 project 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 {DOM, FileReader} from './helper.mjs';
|
|
|
|
DOM.defineCustomElement(
|
|
'../../js/log-file-reader',
|
|
(templateText) => class LogFileReader extends FileReader {
|
|
constructor() {
|
|
super(templateText);
|
|
}
|
|
});
|