chromium/chrome/test/data/webui/chromeos/settings/personalization_page/test_personalization_hub_browser_proxy.ts

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {PersonalizationHubBrowserProxy} from 'chrome://os-settings/os_settings.js';
import {TestBrowserProxy} from 'chrome://webui-test/test_browser_proxy.js';

export class TestPersonalizationHubBrowserProxy extends TestBrowserProxy
    implements PersonalizationHubBrowserProxy {
  constructor() {
    super(['openPersonalizationHub']);
  }

  openPersonalizationHub(): void {
    this.methodCalled('openPersonalizationHub');
  }
}