blob: 4e3e0df7698e544c68bb1050b1693d8932570603 [file] [log] [blame]
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_BIRCH_BIRCH_CLIENT_H_
#define ASH_BIRCH_BIRCH_CLIENT_H_
#include "ash/ash_export.h"
namespace ash {
// Interface to communicate with the birch keyed service.
class ASH_EXPORT BirchClient {
public:
// Request that the birch keyed service start fetching data.
virtual void RequestBirchDataFetch() = 0;
virtual ~BirchClient() = default;
};
} // namespace ash
#endif // ASH_BIRCH_BIRCH_CLIENT_H_