// 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.
#ifndef CHROME_BROWSER_UI_ASH_ASSISTANT_DEVICE_ACTIONS_DELEGATE_IMPL_H_
#define CHROME_BROWSER_UI_ASH_ASSISTANT_DEVICE_ACTIONS_DELEGATE_IMPL_H_
#include <string>
#include "chrome/browser/ui/ash/assistant/device_actions_delegate.h"
#include "chromeos/ash/services/assistant/public/cpp/assistant_service.h"
class DeviceActionsDelegateImpl : public DeviceActionsDelegate {
public:
DeviceActionsDelegateImpl();
// Disallow copy and assign.
DeviceActionsDelegateImpl(const DeviceActionsDelegateImpl&) = delete;
DeviceActionsDelegateImpl& operator=(const DeviceActionsDelegateImpl&) =
delete;
~DeviceActionsDelegateImpl() override;
ash::assistant::AppStatus GetAndroidAppStatus(
const std::string& package_name) override;
};
#endif // CHROME_BROWSER_UI_ASH_ASSISTANT_DEVICE_ACTIONS_DELEGATE_IMPL_H_