// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import type {CellularSetupDelegate} from 'chrome://resources/ash/common/cellular_setup/cellular_setup_delegate.js';
export class FakeCellularSetupDelegate implements CellularSetupDelegate {
shouldShowPageTitle(): boolean {
return false;
}
shouldShowCancelButton(): boolean {
return true;
}
}