// Copyright 2019 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'dart:typed_data';import'goldens.dart';/// An unsupported [GoldenFileComparator] that exists for API compatibility.classLocalFileComparatorextendsGoldenFileComparator{@overrideFuture<bool>compare(Uint8ListimageBytes,Urigolden){throwUnsupportedError('LocalFileComparator is not supported on the web.');}@overrideFuture<void>update(Urigolden,Uint8ListimageBytes){throwUnsupportedError('LocalFileComparator is not supported on the web.');}}/// Returns whether [test] and [master] are pixel by pixel identical.////// This method is not supported on the web and throws an [UnsupportedError]/// when called.ComparisonResultcompareLists(List<int>test,List<int>master){throwUnsupportedError('Golden testing is not supported on the web.');}