blob: 184a20e8733ff5618aabe3406c1b3d41a2abe0d0 [file] [log] [blame]
// 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.
#ifndef CHROME_BROWSER_FAST_CHECKOUT_FAST_CHECKOUT_ACCESSIBILITY_SERVICE_H_
#define CHROME_BROWSER_FAST_CHECKOUT_FAST_CHECKOUT_ACCESSIBILITY_SERVICE_H_
#include <string>
class FastCheckoutAccessibilityService {
public:
FastCheckoutAccessibilityService() = default;
virtual ~FastCheckoutAccessibilityService() = default;
FastCheckoutAccessibilityService(const FastCheckoutAccessibilityService&) =
delete;
FastCheckoutAccessibilityService& operator=(
const FastCheckoutAccessibilityService&) = delete;
virtual void Announce(const std::u16string& text);
};
#endif // CHROME_BROWSER_FAST_CHECKOUT_FAST_CHECKOUT_ACCESSIBILITY_SERVICE_H_