#ifndef ASH_SYSTEM_PHONEHUB_BLUETOOTH_DISABLED_VIEW_H_
#define ASH_SYSTEM_PHONEHUB_BLUETOOTH_DISABLED_VIEW_H_
#include "ash/ash_export.h"
#include "ash/system/phonehub/phone_hub_content_view.h"
namespace ash {
class ASH_EXPORT BluetoothDisabledView : public PhoneHubContentView {
METADATA_HEADER(BluetoothDisabledView, PhoneHubContentView)
public:
BluetoothDisabledView();
BluetoothDisabledView(const BluetoothDisabledView&) = delete;
BluetoothDisabledView& operator=(const BluetoothDisabledView&) = delete;
~BluetoothDisabledView() override;
phone_hub_metrics::Screen GetScreenForMetrics() const override;
private:
void LearnMoreButtonPressed();
};
}
#endif