chromium/chrome/test/data/webui/cr_components/chromeos/cellular_setup/fake_cellular_setup_delegate.ts

// 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;
  }
}