#ifndef ASH_SYSTEM_PHONEHUB_TETHER_CONNECTION_PENDING_VIEW_H_
#define ASH_SYSTEM_PHONEHUB_TETHER_CONNECTION_PENDING_VIEW_H_
#include "ash/ash_export.h"
#include "ash/system/phonehub/phone_hub_content_view.h"
#include "base/memory/raw_ptr.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/view.h"
namespace ash {
class PhoneHubInterstitialView;
class ASH_EXPORT TetherConnectionPendingView : public PhoneHubContentView {
METADATA_HEADER(TetherConnectionPendingView, PhoneHubContentView)
public:
TetherConnectionPendingView();
TetherConnectionPendingView(const TetherConnectionPendingView&) = delete;
TetherConnectionPendingView& operator=(const TetherConnectionPendingView&) =
delete;
~TetherConnectionPendingView() override;
phone_hub_metrics::Screen GetScreenForMetrics() const override;
private:
raw_ptr<PhoneHubInterstitialView> content_view_ = nullptr;
};
}
#endif