#ifndef ASH_SYSTEM_PHONEHUB_PHONE_CONNECTING_VIEW_H_
#define ASH_SYSTEM_PHONEHUB_PHONE_CONNECTING_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 PhoneConnectingView : public PhoneHubContentView {
METADATA_HEADER(PhoneConnectingView, PhoneHubContentView)
public:
PhoneConnectingView();
PhoneConnectingView(const PhoneConnectingView&) = delete;
PhoneConnectingView& operator=(const PhoneConnectingView&) = delete;
~PhoneConnectingView() override;
phone_hub_metrics::Screen GetScreenForMetrics() const override;
private:
raw_ptr<PhoneHubInterstitialView> content_view_ = nullptr;
};
}
#endif