chromium/chrome/test/data/webui/chromeos/settings/os_settings_search_box/test_os_settings_search_box_browser_proxy.ts

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

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

export class TestOsSettingsSearchBoxBrowserProxy extends TestBrowserProxy
    implements OsSettingsSearchBoxBrowserProxy {
  constructor() {
    super([
      'openSearchFeedbackDialog',
    ]);
  }

  openSearchFeedbackDialog(descriptionTemplate: string): void {
    this.methodCalled('openSearchFeedbackDialog', descriptionTemplate);
  }
}